Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

show all posts from category

   <?php
    $args = array( 'category' => 7, 'post_type' =>  'post' ); 
    $postslist = get_posts( $args );    
    foreach ($postslist as $post) :  setup_postdata($post); 
    ?>  
    <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> 
    <?php the_excerpt(); ?>  
    <?php endforeach; ?> 
Source by wordpress.stackexchange.com #
 
PREVIOUS NEXT
Tagged: #show #posts #category
ADD COMMENT
Topic
Name
8+1 =