如何从php / wordpress中的XML中提取特定内容?

时间:2019-03-06 03:34:38

标签: php xml wordpress

我正在一个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>&lt;p&gt; A &lt;/p&gt;
&lt;p&gt; B &lt;/p&gt;
&lt;p&gt; c &lt;/p&gt;
&lt;p&gt; D &lt;/p&gt;
&lt;!-- Byline, Source --&gt;
&lt;p&gt;Hello World, I AM GOOD;/p&gt;
</description>

问题陈述:

我想知道我需要在上面的php代码中进行哪些更改,以便“ Hello World,我好”显示在顶部。

O / P应该是这样的:

Hello World, I AM GOOD

A

B

C

D

0 个答案:

没有答案