我有自定義文章類型的WordPress。自定義文章類型 - 檔案
http://localhost/wordpress/photos/
http://localhost/wordpress/photos/my-photo
爲什麼這些url返回404找不到?
如何爲此創建檔案文件? 像:
歸檔photos.php(我有這個目錄,但是...)
function register_gallery(){
register_post_type('photos', array(
'public' => true,
'menu_position' => 10,
'menu_icon' => 'dashicons-format-gallery',
'supports' => array('title', 'editor', 'thumbnail'),
'has_archive' => true,
));
}
add_action('init','register_gallery');
我建議,採取從參考woocommerce,產品是自定義posts.I已完成它的自定義產品類型。 –
我沒有使用任何插件! –
如何在設置>閱讀中設置固定鏈接? – vard