Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

showing custom post type in wordpress website

<?php 
$loop = new WP_Query( array( 'post_type' => 'graves', 'posts_per_page' => 10 ) ); 

while ( $loop->have_posts() ) : $loop->the_post();

the_title( '<h2 class="entry-title"><a href="' . get_permalink() . '" title="' . the_title_attribute( 'echo=0' ) . '" rel="bookmark">', '</a></h2>' ); 
?>

    <div class="entry-content">
        <?php the_content(); ?>
    </div>

<?php endwhile; ?>
Source by wordpress.org #
 
PREVIOUS NEXT
Tagged: #showing #custom #post #type #wordpress #website
ADD COMMENT
Topic
Name
3+2 =