LoginSignup
0
2

More than 5 years have passed since last update.

ジェネレーター出力を無効にする

Last updated at Posted at 2018-04-18

出力されることに特別なリスクがあるとは思いませんが,意図していない情報が表に出てしまうのを避けるために,無効にします.各所に出力されるので,列挙しています.

stinc/src/basic/blocker.php
function disable_generator_output() {
    $actions = [
        'rss2_head',
        'commentsrss2_head',
        'rss_head',
        'rdf_header',
        'atom_head',
        'comments_atom_head',
        'opml_head',
        'app_head'
    ];
    foreach ( $actions as $action ) {
        remove_action( $action, 'the_generator' );
    }
}
0
2
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
0
2