Answers for "get the category name in posts wordpress query"

PHP
2

category name wp query

$query = new WP_Query( array( 'category_name' => 'staff' ) );

cat (int) – use category id.
category_name (string) – use category slug.
category__and (array) – use category id.
category__in (array) – use category id.
category__not_in (array) – use category id.
Posted by: Guest on November-08-2020
0

get category name by id wordpress

get_cat_name( $cat_id );
Posted by: Guest on November-22-2021
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

Code answers related to "get the category name in posts wordpress query"

Browse Popular Code Answers by Language