我在一个网站中定义了一个自定义帖子类型我正在做如下:
$labels = array(
'name' => 'Clients',
'singular_name' => 'Client',
'add_new' => 'Add New',
'all_items' => 'All Items',
'add_new_item' => 'Add New',
'edit_item' => 'Edit Item',
'new_item' => 'Add New',
'view_item' => 'View Item',
'search_item' => 'Search Item',
'not_found' => 'Item Not Found',
'not_found_in_trash' => 'Item Not Found',
'parent_item_color' => 'Parent Item'
);
$args = array(
'labels' => $labels,
'public' => true,
'show_ui' => true,
'has_archive' => true,
'publicly_queryable' => true,
'query_var' => true,
'rewrite' => true,
'capability_type' => 'post',
'hierarchical' => false,
'supports' => array('title', 'editor', 'thumbnail', 'revisions'),
'taxonomies' => array('category', 'post_tag'),
'menu_position' => 20,
'exclude_from_search' => false,
'menu_icon' => 'dashicons-admin-users'
);
register_post_type('clients', $args);
我的问题是,当我尝试在管理面板的客户端部分(不是搜索表单,但是wordpress管理面板)中搜索我的帖子时,显示的结果来自常规帖子,而不是客户端自定义帖子类型。显然我需要客户的结果。我在这里错过了一个论点或什么?或者这是你应该用过滤器做的事情?我在这里有点迷失,我必须接受它。
答案 0 :(得分:0)
尝试添加:
$args
到自定义帖子类型的{{1}}数组。
答案 1 :(得分:0)
好的,我将回答我自己的问题。实际上,我的帖子类型没有任何问题。这里有罪的家伙是我没有的pre_get_posts!is_admin(),它也将功能传播到管理面板。寻找它的时间不好......无论如何,谢谢