Skip to content

Instantly share code, notes, and snippets.

@mertcanaltin
Created August 8, 2019 17:56
Show Gist options
  • Select an option

  • Save mertcanaltin/b2b98d6817fa18ba3a19c34794429b59 to your computer and use it in GitHub Desktop.

Select an option

Save mertcanaltin/b2b98d6817fa18ba3a19c34794429b59 to your computer and use it in GitHub Desktop.
wordpress tüm yazıları resimleriyle çeker
<?php if(function_exists('rps_show')) echorps_show(); ?>
<?php query_posts('showposts=15'); ?>
<?php while (have_posts()) : the_post(); ?>
<ul>
<li>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php if(has_post_thumbnail()) { the_post_thumbnail(); }
elseif( $thumbnail = get_post_meta($post->ID, 'resim', true) ){ ?>
<div class="padding150_0">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="serv_card_info margin_btn_50">
<div class="serv_card_info_img">
<img src ="<?php echo $thumbnail; ?>" alt="<?php the_title(); ?>" title = "<?php the_title(); ?>" />
<?php } ?>
</div>
<div class="serv_card_info_text">
</a>
<h4><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h4>
</li>
</ul>
</div>
<div class="serv_card_link">
<a href="<?php the_permalink(); ?>" class="btn_frl_sml">Read More</a>
</div>
<?php endwhile;?>
<?php if(function_exists('rps_show')) echorps_show(); ?>
<?php query_posts('showposts=15'); ?>
<?php while (have_posts()) : the_post(); ?>
<ul>
<li>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php if(has_post_thumbnail()) { the_post_thumbnail(); }
elseif( $thumbnail = get_post_meta($post->ID, 'resim', true) ){ ?>
<div class="padding150_0">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="serv_card_info margin_btn_50">
<div class="serv_card_info_img">
<img src ="<?php echo $thumbnail; ?>" alt="<?php the_title(); ?>" title = "<?php the_title(); ?>" />
<?php } ?>
</div>
<div class="serv_card_info_text">
</a>
<h4><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h4>
</li>
</ul>
</div>
<div class="serv_card_link">
<a href="<?php the_permalink(); ?>" class="btn_frl_sml">Read More</a>
</div>
<?php endwhile;?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment