Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




get_rss [ WordPress Function ]

get_rss ( $url, $num_items = 5 )
Parameters:
  • (string) $url URL of feed to display. Will not auto sense feed URL.
  • (int) $num_items Optional. Number of items to display, default is all.
Returns:
  • (bool) False on failure.
Defined at:

Soorgelijke functies: get_terms, fetch_rss, get_users, get_posts, get_term


Display RSS items in HTML list items.

You have to specify which HTML list you want, either ordered or unordered before using the function. You also have to specify how many items you wish to display. You can't display all of them like you can with wp_rss() function.

Source


<?php
function get_rss ($url$num_items 5) { // Like get posts, but for RSS
    
$rss fetch_rss($url);
    if ( 
$rss ) {
        
$rss->items array_slice($rss->items0$num_items);
        foreach ( (array) 
$rss->items as $item ) {
            echo 
"<li>\n";
            echo 
"<a href='$item[link]' title='$item[description]'>";
            echo 
esc_html($item['title']);
            echo 
"</a><br />\n";
            echo 
"</li>\n";
        }
    } else {
        return 
false;
    }
}
?>

Examples [ wp-snippets.com ]

Top Google zoekresultaten

Meer ...

0 User Note(s)

Nog geen één. Wees de eerste!

Nieuw toevoegen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics