以下是包含问题的页面http://knowgreaterpartnership.com/secrets/。
我们使用的RSS生成器是在&#34;事件&#34;上插入内联html标记。 Feed,例如<br>
,<i>
和</i>
。
以下是我最终尝试从代码中删除这些位的代码:
<div id="right" class="last">
<h1><?php esc_html_e( 'Buchanan Events', 'Fusion' ); ?></h1>
<article id="jobs">
<?php if ( function_exists( 'fetch_feed' ) ) { ?>
<?php include_once(ABSPATH . WPINC . '/feed.php');
$feed = fetch_feed( 'http://www.bipc.com/rssfeeds/rss.aspx?id=35' );
$feednew = str_replace( array( '<br>', '<i>', '</i>' ), '', $feed );
$limit = $feednew -> get_item_quantity(5);
$items = $feednew -> get_items(0, $limit);
if ( !$items ) {
echo "problem";
}
else {
//everything's cool
foreach( $items as $item ){ ?>
<h2 class="post"><a class="link" href="<?php echo $item -> get_permalink(); ?>" target="_blank"><?php echo $item -> get_title(); ?></a></h2>
<p class="date"><?php echo $item -> get_date( 'F j, Y' ); ?></p>
<hr>
<?php }
} ?>
<?php } ?>
</article>
</div>
我尝试使用 str_replace()搜索<br>
,<i>
和</i>
标记,并将其替换为空,以便其余的文本流程。
如果我没有使用正确的方法,请告诉我。谢谢!
答案 0 :(得分:2)