我正在一个wordpress网站上工作,我想在其中从xml中提取特定内容。我用来从xml提取内容的php代码是:
文件#1
function get_feed_article( $key = 0 ) {
//adjust for page number input
if ( $key ) {
$key = $key - 2;
}
$feed = get_feed_data();
return $feed->get_item( $key );
}
文件#2
$item = \CURRENT\CPFeed\get_feed_article(get_query_var('page'));
<?php echo wp_kses_post(apply_filters('the_content', $item->get_content())) ?>
第<?php echo wp_kses_post(apply_filters('the_content', $item->get_content())) ?>
行显示以下内容:
A
B
C
D
Hello World, I AM GOOD
以下是从中提取内容的XML:
<description><p> A </p>
<p> B </p>
<p> c </p>
<p> D </p>
<!-- Byline, Source -->
<p>Hello World, I AM GOOD;/p>
</description>
问题陈述:
我想知道我需要在上面的php代码中进行哪些更改,以便“ Hello World,我好”显示在顶部。
O / P应该是这样的:
Hello World, I AM GOOD
A
B
C
D