Category Archives: Wordpress

WordPress – Get category posts by category ID

FROM

$category_content_query = new WP_Query(‘category_name=’.$category_name);

TO

$catid = get_cat_ID($category_name);
$category_content_query = new WP_Query(‘cat=’.$catid);

Follow

Get every new post delivered to your Inbox.