wp_dashboard_site_activity

函数
wp_dashboard_site_activity ( No parameters )

wp_dashboard_site_activity:这是一个WordPress函数,它生成“站点活动”仪表盘小工具,显示最近站点事件的日志,如新用户注册、文章和评论发布以及插件激活。可以使用过滤器自定义该小工具以添加或删除信息。

活动小工具的回调函数。

function wp_dashboard_site_activity() {

	echo '<div id="activity-widget">';

	$future_posts = wp_dashboard_recent_posts(
		array(
			'max'    => 5,
			'status' => 'future',
			'order'  => 'ASC',
			'title'  => __( 'Publishing Soon' ),
			'id'     => 'future-posts',
		)
	);
	$recent_posts = wp_dashboard_recent_posts(
		array(
			'max'    => 5,
			'status' => 'publish',
			'order'  => 'DESC',
			'title'  => __( 'Recently Published' ),
			'id'     => 'published-posts',
		)
	);

	$recent_comments = wp_dashboard_recent_comments();

	if ( ! $future_posts && ! $recent_posts && ! $recent_comments ) {
		echo '<div class="no-activity">';
		echo '<p>' . __( 'No activity yet!' ) . '</p>';
		echo '</div>';
	}

	echo '</div>';
}

常见问题

FAQs
查看更多 >