_post_states

函数
_post_states ( $post, $display = true )
参数
  • (WP_Post) $post The post to retrieve states for.
    Required:
  • (bool) $display Optional. Whether to display the post states as an HTML string. Default true.
    Required:
    Default: true
返回值
  • (string) Post states string.
相关
  • get_post_states()
定义位置
相关方法
get_post_statesget_post_statusesget_post_statusget_post_statipost_exists
引入
2.7.0
弃用
-

_post_states: 这个函数用于生成一个文章的状态。它需要一个参数,即$post,它是文章的对象: 这个函数在WordPress主题中经常被用来显示一个文章的状态。

以HTML形式呼应或返回文章的状态。

function _post_states( $post, $display = true ) {
	$post_states        = get_post_states( $post );
	$post_states_string = '';

	if ( ! empty( $post_states ) ) {
		$state_count = count( $post_states );

		$i = 0;

		$post_states_string .= ' — ';

		foreach ( $post_states as $state ) {
			++$i;

			$separator = ( $i < $state_count ) ? ', ' : '';

			$post_states_string .= "<span class='post-state'>{$state}{$separator}</span>";
		}
	}

	if ( $display ) {
		echo $post_states_string;
	}

	return $post_states_string;
}

常见问题

FAQs
查看更多 >