Wordpress中的帖子格式

时间:2014-11-07 10:48:21

标签: php wordpress

我想在所有自定义帖子类型中显示所有帖子格式(让我们说:旁边)。在WordPress中显示某个类别的所有帖子,只需要使用此URL:mysite.com/category/mycategory。

1 个答案:

答案 0 :(得分:1)

在支持中,您需要包含' post_format'完成它。

    $args = array(
    'labels'                => $labels,
    'public'                => true,
    'publicly_queryable'    => true,
    'show_ui'               => true,
    'query_var'             => true,
    'rewrite'               => apply_filters( 'et_portfolio_posttype_rewrite_args', array( 'slug' => 'testimonial', 'with_front' => false ) ),
    'capability_type'       => 'post',
    'hierarchical'          => false,
    'menu_position'         => null,
    'supports'              => array( 'title', 'editor', 'thumbnail', 'excerpt', 'comments', 'revisions'  )
);

register_post_type(' testimonial',$ args);