• Hello,
    thank you for this useful plugin,
    i want to custom the categories in the plugin instead of all categories
    thanks.

Viewing 1 replies (of 1 total)
  • Plugin Author ColinD

    (@colind)

    Howdy. I just updated the plugin and added a filter, ‘cd_fa_post_query’ that you can hook into. The example below would only show posts by the author in the red category.

    function example_featured_author_post_query($query){
    	$query['category_name'] = 'red';
    	return $query;
    }
    
    add_filter('cd_fa_post_query', 'example_featured_author_post_query');

    Its a standard argument array used for WP_Query class so you can use any argument you need.

Viewing 1 replies (of 1 total)
  • The topic ‘how to set cutome category to disply posts?’ is closed to new replies.