RSS提要中的自定义元框数据

时间:2011-07-03 作者:shelomo

Im使用WP Alchemy设置一些自定义元框。因为这些都是用于音频文件的,所以当我创建提要时,数据不会进入,我无法为它们创建播客提要。

1 个回复
SO网友:shelomo

Ok I got it

// Add the audio link to the feeds so we can podcast
function feed_customMeta($content) {
global $post, $id, $radioMeta;

  if ( !is_feed() )
    return $content;

 $getRadioLink = \'<a href="\'.$radioMeta->get_the_value(\'radioLink\').\'">Download Audio</a>\';

  if( $getRadioLink)
    $content .= $getRadioLink;
    return $content;
}
add_filter(\'the_excerpt_rss\', \'feed_customMeta\');
add_filter(\'the_content_feed\', \'feed_customMeta\');
结束