将自定义字段添加到自定义帖子类型RSS


17

我想将自定义帖子类型中的自定义字段添加到RSS Feed中的RSS提要中,该帖子类型位于http://example.com/feed/?post_type=my_custom_post_type

我已经看到了针对常规Feed执行此操作的信息,但是对于如何重写自定义帖子类型Feed则一无所获。

我需要在Feed中添加10到15个商品(第一幕,第二幕,第三幕,价格,购买链接...)

Answers:


20
function add_custom_fields_to_rss() {
    if(get_post_type() == 'my_custom_post_type' && $my_meta_value = get_post_meta(get_the_ID(), 'my_meta_key', true)) {
        ?>
        <my_meta_value><?php echo $my_meta_value ?></my_meta_value>
        <?php
    }
}
add_action('rss2_item', 'add_custom_fields_to_rss');

您应该能够替换以及需要添加到Feed中的任何其他元值。


1
所以我需要为每个元键(可能在10左右)向帖子类型检查中添加一个项目,然后将其调用到模板中?您不能只在带有帖子ID的元值区域中调用get_post_meta吗?
curtismchale,2010年

2
好答案!
MikeSchinkel 2010年

@curtismchale,我只提供了最简单的答案。如果您要涉足的领域如此之多,我可能会选择格式更像@mikeschinkel的答案的东西。
prettyboymp 2010年

19

@curtismchale:

捎带关@ prettyboymp的出色答卷,我就可以旋转,这里是你如何能做到多个自定义字段(我做了3,你可以做更多):

add_action('rss2_item', 'yoursite_rss2_item');
function yoursite_rss2_item() {
  if (get_post_type()=='my_custom_post_type') {
    $fields = array( 'field1', 'field2', 'field3' );
    $post_id = get_the_ID();
    foreach($fields as $field)
      if ($value = get_post_meta($post_id,$field,true))
        echo "<{$field}>{$value}</{$field}>\n";
  }
}

PS请确保提供@prettyboymp道具,因为在他回答之前我不知道该怎么做。我也是在回答,因为我不确定他回来之前要等多久,所以我决定在此期间给您答案。


7

非常感谢您提供的出色信息。

我想扩展其他两个已经写的内容。为了验证这一点,您必须具有一个自定义名称空间。这样做的方法如下:

/* IN ORDER TO VALIDATE you must add namespace   */
add_action('rss2_ns', 'my_rss2_ns');
function my_rss2_ns(){
    echo 'xmlns:mycustomfields="'.  get_bloginfo('wpurl').'"'."\n";
}

然后使用自定义名称空间为字段名称项添加前缀在此示例中,我使用了“ mycustomfields”,请参见下文:

/*  add elements    */
add_action('rss2_item', 'yoursite_rss2_item');
function yoursite_rss2_item() {
  if (get_post_type()=='my_custom_post_type') {
    $fields = array( 'field1', 'field2', 'field3' );
    $post_id = get_the_ID();
    foreach($fields as $field)
      if ($value = get_post_meta($post_id,$field,true))
        echo "<mycustomfields:{$field}>{$value}</mycustomfields:{$field}>\n";
  }
}

附带一提,您可以使用动作将3种挂钩

    rss2_ns : to add a specific namespace
            add_action('rss2_ns', 'my_rss2_ns');

    rss2_head : to add tags in the feed header
            add_action('rss2_head', 'my_rss2_head');

    rss2_item : to add tags in each feed items
            add_action('rss2_item', 'my_rss2_item');

对于此处显示的内容:Jetpack将xmlns:geo和xmlns:georss命名空间广告。如果您使用的是Jetpack,则无需添加这些。
MastaBaba '18年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.