WordPress单{cpt} .php不起作用

时间:2018-02-22 19:06:17

标签: php wordpress custom-post-type

这是我必须生成自定义帖子类型的php:

function custom_post_type() {
    $args = array(
        'label'               => __( 'Products', 'rgo' ),
        'labels'              => $labels,
        'supports'            => array( 'title', 'custom-fields', ),
        'hierarchical'        => false,
        'public'              => true,
        'show_ui'             => true,
        'show_in_menu'        => true,
        'show_in_nav_menus'   => true,
        'show_in_admin_bar'   => true,
        'menu_position'       => 20,
        'can_export'          => true,
        'has_archive'         => false,
        'exclude_from_search' => false,
        'publicly_queryable'  => true,
        'capability_type'     => 'page',
    );
    register_post_type( 'rgo-products', $args );
}
add_action( 'init', 'custom_post_type', 1 );

然后我有一个名为single-rgo-products.php的文件来处理单个帖子,但在查看CPT单页时没有加载此文件。我甚至不确定正在加载什么模板。我已经尝试对single.phpindex.php文件进行更改,以查看是否采取了更改,但他们没有。

我已尝试通过进入设置更新永久链接>永久链接和保存几次。

2 个答案:

答案 0 :(得分:1)

刷新固定链接设置并重新加载自定义单页面。我希望它能奏效。

答案 1 :(得分:1)

自定义单页的名称错误。名称应该是单个+(自定义帖子类型)