所以我觉得我做的事情显然很简单,却无法弄清楚是什么! 我创建了自定义帖子类型=作者,然后创建了单个Author.php来显示每个作者的信息,但是当我打开每个作者的链接时404.php
这里是自定义帖子类型作者
function p2p2_register_author(){
$labels = array(
'name' => _x( 'همکاران', 'Author' ),
'singular_name' => _x('همکار','Author'),
'add_new' => _x( 'افزودن همکار', '' ),
'add_new_item' => __( 'افزودن همکاران جدید' ),
'edit_item' => __( 'ویرایش همکار' ),
'new_item' => __( 'همکار جدید' ),
'all_items' => __( 'همه همکاران' ),
'search_items' => __( 'جست و جو همکار' ),
'not_found' => __( 'همکاری یافت نشد' ),
'not_found_in_trash' => __( 'همکار در زباله دان یافت نشد' ),
'parent_item_colon' => '',
'menu_name' => 'همکار'
);
register_post_type(
'Author',
array (
'labels' => $labels,
'description' => 'ذخیره اطلاعات مربوط به همکاران',
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'author' ),
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => null,
'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' )
)
);
}
add_action('init', 'p2p2_register_author');
flush_rewrite_rules();
我也有档案作者,它的工作非常好,但单作者.php不起作用。
非常感谢任何帮助!
答案 0 :(得分:0)
访问永久链接页面,然后刷新它。我的意思是点击Save Changes
按钮。希望你的问题能得到解决。如果不是,则将'has_archive' => true,
更改为'has_archive' => false,
,然后再次点击永久链接页面上的Save Changes
按钮。你的问题将得到解决。