Skip to content

Instantly share code, notes, and snippets.

@mjinayan80
Last active October 25, 2017 07:14
Show Gist options
  • Save mjinayan80/43ed8c32652e932ee9a2861731559015 to your computer and use it in GitHub Desktop.
Save mjinayan80/43ed8c32652e932ee9a2861731559015 to your computer and use it in GitHub Desktop.
custom-post
<?php
global $post;
$args = array( 'posts_per_page' => 10, 'post_type'=> 'custom-post-type' );
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post); ?>
<?php
$job_link= get_post_meta($post->ID, 'job_instructions', true);
?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<p><?php echo $job_link; ?></p>
<?php endforeach; ?>
@mjinayan80
Copy link
Author

This is a custom-post-query. It is used any post-query. It is a global post query.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment