Oooo! Ne yazık ki WordPress 'bazı dosyaları düzenlemeye başlamak zorunda.
Wp_includes yemi bir öneki birkaç dosya vardır, bunlar temelde sadece 'beslemek şablonlar', ve orada size döngü bulacaksınız. o zaman yapmanız gereken sadece yerini almaktadır:
<title><?php the_title_rss() ?></title>
ile
<title><?php echo get_post_meta($post->ID, 'external-link', true); ?></title>
for each one, there are some ile an ending of -comments, these are for any comments attached to your posts, can choose whether to bother doing these or not, i was extremely lazy and only bothered to edit rss2 hehe.
Anyway, the really annoying bit about this is you wont be able to update your wordpress ileout these files being overwritten, to overcome that simply duplicate a copy into your theme folder and add this into your functions.php file
//Alter default RSS feed
function disable_our_feeds() {
ob_start();
require_once(ABSPATH. 'wp-content/themes/yourtheme/feed-rss2.php');
$rss2 = ob_get_clean();
die($rss2);
}
add_action('do_feed_rss2', 'disable_our_feeds', 1);
Ve rahatsız edici yayınların eachand her biri, eh bir işlev eklemek gerekir?
Umarım yardımı olur :)