我编辑过this file 像这样,但不起作用
...do_action( \'rss2_head\' );
while ( have_posts() ) :
the_post();
$meta = get_post_meta($post->ID, "add_in_rss", false);
if($meta = "yes"){
?>
<item>
<title><?php the_title_rss(); ?><....
....
....p echo get_comments_number(); ?></slash:comments>
<?php endif; ?>
<?php rss_enclosure(); ?>
<?php
/**
* Fires at the end of each RSS2 feed item.
*
* @since 2.0.0
*/
do_action( \'rss2_item\' );
?>
</item>
<?php } endwhile; ?>...
什么是错误,应该如何正确?
我不是程序员。我是根据this code 只删除感叹号,以便有反向触发器。
对不起,我的英语不好。