Skip to content

Instantly share code, notes, and snippets.

@hinaloe
Created November 29, 2014 09:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hinaloe/ba50fdbac2bcfca689e6 to your computer and use it in GitHub Desktop.
Save hinaloe/ba50fdbac2bcfca689e6 to your computer and use it in GitHub Desktop.
<?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