Answers for "wp get_posts_by_title function"

PHP
0

get post title by post id wordpress

get_post( $post_id )->post_title
Posted by: Guest on October-13-2020
0

Get wordpress posts by category name..!

<?php query_posts('category_name=CATEGORYNAME&showposts=5');

while (have_posts()) : the_post(); ?>

the_title();   // To display the title of all posts that have category name selected 

the_content();   // To display the content of all posts that have category name selected 


<?php endwhile; ?>
Posted by: Guest on May-13-2021

Browse Popular Code Answers by Language