tw fc2 to 2nt
..

ハダカのブログ                IP: 3.141.27.244

WordPress 個別投稿に追加

WordPressにおいて個別投稿(Single)の上や下に任意の文字やプラグインの表示などをさせるため、function.phpの記述で何とかする方法です。

function add_post_content($content) {
if(is_single()){
if(function_exists('the_ratings')) {
$bottom = '

'.the_ratings().'

';
}
$content .= $bottom;
}
return $content;
}
add_filter('the_content', 'add_post_content');

ヌードにも飾り付けが欲しいでしょ

pr
Copyright(c) 2007 ハダカのブログ