Created
November 29, 2014 09:42
-
-
Save hinaloe/ba50fdbac2bcfca689e6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: シングルページ定型文 | |
Plugin Uri: https://ja.forums.wordpress.org/topic/143608 | |
Description: 投稿ページの共有ボタンの前に定型文を挿入します。 | |
Author: Hinaloe | |
Author Uri: http://blog.hinaloe.net/ | |
*/ | |
add_filter('the_content', | |
function($content) | |
{ | |
// 定型文 | |
$text = "<h3>Message</h3>"; | |
if(is_single()) | |
{ | |
return $content.$text; | |
} | |
return $content; | |
} | |
,18); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment