wpフックを使用してタイトルを置き換えることができます。このコードを置くことも、あなたのテーマにfunction.phpの中に入れることもできます。またはプラグインの例では:
function my_custom_replace_title($title, $id = null) {
/* Put here your condition, you get the post ID on "$id", and the current title on "$title"*/
// by category
//if (in_category('XXX', $id)) {
// return '';
//}
//if ($title === 'custom text'){
// return 'this is my new title';
// }
$title = 'My Custom Title - Forced'; // This is to test it.
return $title;
}
add_filter('the_title', 'my_custom_replace_title', 10, 2);
私はあなたが助けを願っていますhttps://codex.wordpress.org/Plugin_API/Filter_Reference/the_title
を読むことをお勧めします。
「投稿のタイトル」が指定のカテゴリにある場合は置き換えますか?または、すべての「投稿のタイトル」を置き換えたいですか? –