以下代码(旧帖子为here 作者是diggy) 很有用,但我想在最近的评论小部件上显示帖子和页面,而不仅仅是附件。
function wpse80087_widget_comments_args( $args )
{
$args = array( \'number\' => 5, \'post_type\' => \'attachment\', \'status\' => \'approve\', \'post_status\' => \'inherit\' );
return $args;
}
add_filter( \'widget_comments_args\', \'wpse80087_widget_comments_args\', 10, 1 );
有可能吗?解决方案:
幸亏Pieter Goosen 和Birgire.
First step:
Second step:
作用phpfunction wpse80087_widget_comments_args( $args ) {
$args = array(
\'number\' => 9,
\'post_type\' => array(\'attachment\', \'post\', \'page\'),
);
return $args;
}
add_filter( \'widget_comments_args\', \'wpse80087_widget_comments_args\', 10, 1 );