LoginSignup
5
5

More than 5 years have passed since last update.

WordPress の投稿編集画面でコメントアウトを使えるようにする

Last updated at Posted at 2016-07-12

WordPressの投稿本文部分ではコメントアウト <!-- --> が使えない。
たまに使いたい人向け。

もともとの許可されているタグ

上記のようにコメントアウトのタグは許可されていない。

ショートコード作っちゃえ

ignore_shortcode.php
<?php
/**
 * 投稿内でコメントアウトできるようにする
 */
function ignore_shortcode( $atts, $content = null ) {
    return null;
}
add_shortcode( 'ignore', 'ignore_shortcode', '9999' );

[ignore]コメントアウト[/ignore] とすれば表側には出力されない。DBには残るので投稿作成画面では確認できる。

更に使いやすくするなら Quicktags 登録しておけばいいんじゃないかな。

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5