WordPressでトラックバックとRSSでのみサイト簡易表記をつける方法を紹介します。
■Atom、RSSの改造
(1) wp-rss.php 27行目
<item>
<title>[W] <?php the_title_rss() ?></title>
(2) wp-rss2.php 34行目
<item>
<title>[W] <?php the_title_rss() ?></title>
(3) wp-rdf.php 47行目
<title>[W] <?php the_title_rss() ?></title>
<link><?php permalink_single_rss() ?></link>
(4) wp-atom.php 28行目
<entry>
<author>
<name><?php the_author() ?></name>
</author>
<title>[W] <?php the_title_rss() ?></title>
■トラックバックの改造
(1) wp-includes/function.php 548
$title = urlencode(stripslashes('[W]' .$title));
※MovableTypeの改造方法は、こちらです。
[E] サイト簡易表記の対応方法(Movable Type)
※Nucleusの対応方法は、こちらです。
[E] サイト簡易表記の対応方法(Nucleus)
コメント