プラグインなしで.html
カスタム投稿タイプに拡張機能を追加する方法はありますか?
/%postname.html
パーマリンク設定で使用できる投稿
私が使用できるページ:
add_action('init', 'change_page_permalink', -1);
function change_page_permalink() {
global $wp_rewrite;
if ( strstr($wp_rewrite->get_page_permastruct(), '.html') != '.html' )
$wp_rewrite->page_structure = $wp_rewrite->page_structure . '.html';
}
カスタム投稿タイプの場合???
上記のコードに似.html
た、カスタム投稿タイプのURL を変更または追加する必要があるコードはありますか?
function post-type_permalink
エラーをスローします。このエラーが発生しない場合は、デバッグ設定に問題が発生しています。また、行の正しい意図で質問を書き直してください。ありがとう。
/$postname.html
投稿に設定した場合、カスタム投稿タイプに同じように使用できますか?
-
、関数名では機能しません...