get_most_active_blogs

函式
get_most_active_blogs ( $num = 10, $display = true )
引數
  • (int) $num Optional. Number of activate blogs to retrieve. Default 10.
    Required:
    Default: 10
  • (bool) $display Optional. Whether or not to display the most active blogs list. Default true.
    Required:
    Default: true
返回值
  • (array) List of "most active" sites.
定義位置
相關方法
get_active_blog_for_userget_post_timeget_post_classget_post_datetimeget_post_field
引入
-
棄用
3.0.0

get_most_active_blogs函式用於檢索WordPress多站點安裝中最活躍的部落格的陣列。此功能可用於顯示網站上最受歡迎的部落格列表。

檢索最活躍網站列表的功能已經過時。

function get_most_active_blogs( $num = 10, $display = true ) {
	_deprecated_function( __FUNCTION__, '3.0.0' );

	$blogs = get_blog_list( 0, 'all', false ); // $blog_id -> $details
	if ( is_array( $blogs ) ) {
		reset( $blogs );
		$most_active = array();
		$blog_list = array();
		foreach ( (array) $blogs as $key => $details ) {
			$most_active[ $details['blog_id'] ] = $details['postcount'];
			$blog_list[ $details['blog_id'] ] = $details; // array_slice() removes keys!
		}
		arsort( $most_active );
		reset( $most_active );
		$t = array();
		foreach ( (array) $most_active as $key => $details ) {
			$t[ $key ] = $blog_list[ $key ];
		}
		unset( $most_active );
		$most_active = $t;
	}

	if ( $display ) {
		if ( is_array( $most_active ) ) {
			reset( $most_active );
			foreach ( (array) $most_active as $key => $details ) {
				$url = esc_url('http://' . $details['domain'] . $details['path']);
				echo '<li>' . $details['postcount'] . " <a href='$url'>$url</a></li>";
			}
		}
	}
	return array_slice( $most_active, 0, $num );
}

常見問題

FAQs
檢視更多 >