0

我只想要标准的摘录框 - 而不是我自己创建的元框,添加到自定义帖子中。该框显示在帖子中,但不在自定义帖子中。我已经尝试了这两种较旧的解决方案,但都没有奏效(可能是 WP 3.9 的问题):

自定义帖子类型名称为“独家新闻”

我将此添加到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') );
4

1 回答 1

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'),
    )
  );
}
于 2015-11-18T12:35:43.367 回答