post_format_meta_box

函数


post_format_meta_box ( $post, $box )
参数
  • (WP_Post)
    $post
    Current post object.
    Required:
  • (array)
    $box
    { Post formats meta box arguments. @type string $id Meta box ‘id’ attribute. @type string $title Meta box title. @type callable $callback Meta box display callback. @type array $args Extra meta box arguments. }
    Required:
定义位置
  • wp-admin/includes/meta-boxes.php
    , line 479
引入
3.1.0
弃用

Displays post format form elements.

function post_format_meta_box( $post, $box ) {
	if ( current_theme_supports( 'post-formats' ) && post_type_supports( $post->post_type, 'post-formats' ) ) :
		$post_formats = get_theme_support( 'post-formats' );

		if ( is_array( $post_formats[0] ) ) :
			$post_format = get_post_format( $post->ID );
			if ( ! $post_format ) {
				$post_format = '0';
			}
			// Add in the current one if it isn't there yet, in case the active theme doesn't support it.
			if ( $post_format && ! in_array( $post_format, $post_formats[0], true ) ) {
				$post_formats[0][] = $post_format;
			}
			?>
		
/>
/>