Skip to content

Instantly share code, notes, and snippets.

@aslamhindko
Created April 26, 2019 07:26
Show Gist options
  • Save aslamhindko/f39f0baab38c828b7f57bfa607d2d10c to your computer and use it in GitHub Desktop.
Save aslamhindko/f39f0baab38c828b7f57bfa607d2d10c to your computer and use it in GitHub Desktop.
Image main ALT tage lene k liye ye code use kare ge
<!-- Email Bell -->
<section class="emailbell">
<div class="container">
<?php
$q = new WP_Query(
array('post_type' => array('whyinboxy'),
'post_status' => array('publish'),
'orderby' => 'date',
'order' => 'ASC',
'posts_per_page' => $sitem,
'service-category' => $category)
);
?>
<?php while ($q->have_posts()) : $q->the_post(); ?>
<div class="col-md-6">
<?php $thumbnail = wp_get_attachment_image_src(get_post_thumbnail_id(),'full', true); $alt = get_post_meta(get_post_thumbnail_id(), '_wp_attachment_image_alt', true); ?>
<img src="<?php echo $thumbnail[0]; ?>" class="img-responsive" alt="<?php echo $alt; ?>" >
</div>
<div class="col-md-6">
<h2><?php the_title(); ?></h2>
<?php echo get_the_content(); ?>
</div>
<?php endwhile; ?>
</div>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment