Quantcast
Channel: How to parse category term from Wordpress ATOM feed in PHP? - Stack Overflow
Viewing all articles
Browse latest Browse all 2

Answer by i alarmed alien for How to parse category term from Wordpress ATOM feed in PHP?

$
0
0

term is an attribute, so you need to use getAttribute to get the data from it. For example:

// $dom is the DOMDocument object holding the XML$cats = $dom->getElementsByTagName('category');foreach ($cats as $c) {    echo "term: " . $c->getAttribute('term') . PHP_EOL;}

Output:

term: Blogterm: Mobileterm: Websites

If you're using $c->nodeValue, you won't get anything because the node doesn't have a value--it's empty. To get the first category's term attribute, you'll need to substitute your current line with this:

'cats' => $node->getElementsByTagName('category')->item(0)->getAttribute('term')

Viewing all articles
Browse latest Browse all 2

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>