• Hi, I need the Recent post widgets to be able to show posts by chosen tags instead of categories, especially recent post C widget. Could someone help with modifying it?

Viewing 1 replies (of 1 total)
  • Hello there,

    Apologies, tag is currently unsupported on the ‘NewsAnchor: Recent posts type C’ widget.

    You could modify this query in the widgets/recent-posts-c.php file.

    
    $query = new WP_Query( array(
    	'posts_per_page'      => 6,
    	'no_found_rows'       => true,
    	'post_status'         => 'publish',
    	'ignore_sticky_posts' => true,
    	'category_name' 	  => $category,
    
    ) );
    

    Refer to this documentation: https://developer.ww.wp.xz.cn/reference/classes/wp_query/

    Regards,
    Kharis
    aThemes Support

Viewing 1 replies (of 1 total)

The topic ‘Recent post widgets by tag’ is closed to new replies.