在创建wordpress自定义分类时显示通知

时间:2014-09-01 15:01:25

标签: wordpress custom-post-type

我正在尝试为自定义帖子创建自定义分类。但是当我试图添加新的类别时,会出现“通知试图获取非对象的属性......”的通知。这是自定义帖子的代码

  function newsbox_post() {
    register_post_type( 'newsbox-post',
    array(
        'label'               => __( 'Newsbox Post', 'text_domain' ),
        'labels' => array(
            'name' => __( 'Newsbox Posts' ),
            'singular_name' => __( 'Newsbox Post' ),
            'menu_name'    => __( ' Newsbox Post', 'text_domain' ),
            'parent_item_colon'   => __( 'Parent  Newsbox post:', 'text_domain' ),
            'all_items'           => __( 'All  Newsbox post', 'text_domain' ),
            'view_item'           => __( 'View  Newsbox post', 'text_domain' ),
            'add_new_item'        => __( 'Add New  post', 'text_domain' ),
            'add_new'             => __( 'New post', 'text_domain' ),
            'edit_item'           => __( 'Edit post', 'text_domain' ),
            'update_item'         => __( 'Update post', 'text_domain' ),
            'search_items'        => __( 'Search post', 'text_domain' ),
            'not_found'           => __( 'No post found', 'text_domain' ),
            'not_found_in_trash'  => __( 'No post found in Trash', 'text_domain' )
        ),
        'public' => true,
        'rewrite' => array('slug' => 'Newsbox-post'),
        'description'         => __( 'Enter recent to your newsbox', 'text_domain' ),
        'supports'            => array( 'title', 'editor', 'page-attributes' ),
        'show_ui'             => true,
        'show_in_menu'        => true,
        'show_in_nav_menus'   => false,
        'show_in_admin_bar'   => true,
        'can_export'          => false,
        'has_archive'         => false,
        'exclude_from_search' => true,
        'publicly_queryable'  => true,
        'capability_type'     => 'post'
        )
  );
 }

add_action( 'init', 'newsbox_post' );

这是自定义分类法的代码

 add_action( 'init', 'newsbox_post_category_taxonomy', 0 );

 function newsbox_post_category_taxonomy() {
 $labels = array(
'name' => _x( 'Categories', 'taxonomy general name' ),
'singular_name' => _x( 'Categories', 'taxonomy singular name' ),
'search_items' =>  __( 'Search Category' ),
'all_items' => __( 'All Categories' ),
'parent_item' => __( 'Parent Category' ),
'parent_item_colon' => __( 'Parent Category:' ),
'edit_item' => __( 'Edit Category' ), 
'update_item' => __( 'Update Category' ),
'add_new_item' => __( 'Add New Category' ),
'new_item_name' => __( 'New Categories Name' ),
'menu_name' => __( 'Categories' ),
 );     



  register_taxonomy('Categories',array('newsbox-post'), array(
    'hierarchical' => true,
    'labels' => $labels,
    'show_ui' => true,
    'show_admin_column' => true,
    'query_var' => true

  ));

  }

请告诉我解决方案。感谢。

1 个答案:

答案 0 :(得分:1)

你的问题与语法有关。你的代码后面有两个问题

  • 切勿在自定义分类名称或自定义帖子类型名称中使用camelcase。

  • 永远不要在自定义帖子类型名称或自定义分类名称中使用超量({​​{1}}),以及任何特殊字符。如果您必须在名称中分隔名称/单词,请仅使用下划线(-

对于您的分类名称,

_应为Categories,对于您的自定义帖子类型名称,categories应为newsbox-post

修改

正确格式化您的代码并进行相关更改。经过测试和工作

newsbox_post