Skip to content

Instantly share code, notes, and snippets.

@gatespace
Last active February 10, 2017 03:08
Show Gist options
  • Select an option

  • Save gatespace/fc4ee98da4c67e417c84bf33a090fbf6 to your computer and use it in GitHub Desktop.

Select an option

Save gatespace/fc4ee98da4c67e417c84bf33a090fbf6 to your computer and use it in GitHub Desktop.
WordPress の投稿編集画面でコメントアウトを使えるようにする ref: http://qiita.com/gatespace/items/623ae078fff14f20e4ba
<?php
/**
* 投稿内でコメントアウトできるようにする
*/
function ignore_shortcode( $atts, $content = null ) {
return null;
}
add_shortcode( 'ignore', 'ignore_shortcode', '9999' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment