新規投稿時に記事のテンプレートを表示

Wordpress

新規投稿時にタグを自動で入力

新規投稿時に毎回タグを入力するのが面倒なのでfunction.phpに下記を追加

/*新規投稿時のテンプレート*/
function template_post_con($temp_con){
global $pagenow;
//global $post_type;//投稿タイプで切り分けたいときに使う
if (is_admin() && ($pagenow=='post-new.php')):
$temp_con =
'<h4></h4>
<p></p>
<h5></h5>
<dl>
<dt></dt>
<dd></dd>
</dl>';
endif;
return $temp_con;
}
//下記フックは投稿本文をリッチテキストエディター内に表示する前に適用
add_filter( 'the_editor_content', 'template_post_con');

新規登録時に下記のようになる

20161013wp_content
※表示する内容は少し考える(上の場合だと意味なさすぎる・・・)

タイトルとURLをコピーしました