Skip to content

Instantly share code, notes, and snippets.

@hissy
hissy / my-adsense.php
Last active December 19, 2015 17:58
[WordPress] Add AdSense ads to blog sample
<?php
/*
Plugin Name: My AdSense
Description: adsense表示
Author: Takuro Hishikawa
Version: 0.2
Author URI: http://notnil-creative.com/
*/
// add adsbygoogle.js to footer
@hissy
hissy / force_comment_close.php
Last active December 21, 2015 08:29
[WordPress] Force comments and pingback close
<?php
/*
Plugin Name: Force comments and pingback close
Author: Takuro Hishikawa
Version: 0.1
*/
add_filter('comments_open', '__return_false');
add_filter('pings_open', '__return_false');
@hissy
hissy / gist:6793481
Created October 2, 2013 13:09
[WordPress/Plugin] WP SiteManager のメタタグの出力を止める
<?php
global $WP_SiteManager;
if (is_object($WP_SiteManager) && isset($WP_SiteManager->instance->meta_manager)) {
$meta_manager = $WP_SiteManager->instance->meta_manager;
remove_action( 'wp_head', array( $meta_manager, 'output_meta' ), 0 );
}