Skip to content

Instantly share code, notes, and snippets.

@ibrahimkholil
Last active October 21, 2016 19:33
Show Gist options
  • Save ibrahimkholil/d1ca000f22cc243de4b911089ef45fc6 to your computer and use it in GitHub Desktop.
Save ibrahimkholil/d1ca000f22cc243de4b911089ef45fc6 to your computer and use it in GitHub Desktop.
Custom post query
<?php
global $post;
$args = array( 'posts_per_page' => 6, 'post_type'=> 'protfolio' );
$protfolio = get_posts( $args );
foreach( $protfolio as $post ) : setup_postdata($post); ?>
<?php
$protfolio_link= get_post_meta($post->ID, 'protfolio_link', true);
?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<p><?php echo $protfolio_link; ?></p>
<?php endforeach; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment