0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

[WordPress]headに差し込まれるやつ消すなど

Posted at

アップデートされる度に余計なものが出力されるのまじ・・

functions.php
/**
 * JS, CSS
 */
add_action('wp_enqueue_scripts', function() {
	if ( is_admin() ) return;
	add_action('wp_enqueue_scripts', function() {
		wp_deregister_style('wp-block-library');
		wp_deregister_style('wp-block-library-theme');
		wp_dequeue_style('global-styles');
		wp_dequeue_style('classic-theme-styles');
        wp_deregister_script('jquery');
        wp_enqueue_script('jquery', '//cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js', [], 'latest');
        //any
	});
});

/**
 * ショートコードボタン追加
 * ※引数指定しないと表示されなくなった
 */
add_action('admin_print_footer_scripts', function() {
    global $post_type;
?>
<script>
<?php if ( in_array($post_type, ['post']) && wp_script_is('quicktags') ):?>
QTags.addButton('any', '[any]', '[any id=""]');
<?php endif;?>
</script>
<?php
}, 20);
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?