我只想要标准的摘录框 - 不是我自己创建的元文件,添加到自定义帖子。该框显示在帖子中,但不显示在自定义帖子中。我已经尝试了这两种较旧的解决方案,但它们都没有工作(也许它是WP 3.9的问题):
自定义帖子类型名称为" Scoop"
我将此添加到register_post_type_scoop() $labels = array
'supports' => array('title','thumbnail','excerpt')
但它没有工作 - 也没有这样做:
add_post_type_support('Scoop', 'title');
add_post_type_support('Scoop', array('title', 'thumbnail', 'excerpt') );
答案 0 :(得分:1)
向excerpt
对象添加索引值supports
。下面的例子是:
add_action( 'init', 'create_testimonial_posttype' );
function create_testimonial_posttype(){
register_post_type( 'testimonials',
array(
'labels' => array(
'name' => __( 'Testimonials' ),
'singular_name' => __( 'Testimonial' )
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'clients'),
'supports' => array('title','thumbnail','editor','page-attributes','excerpt'),
)
);
}