WordPress: afiseaza continut din RSS pe site-ul tau

Daca doresti sa afisezi continutul RSS de pe un alt blog pe blogul tau poti folosi urmatorul cod:

[php]

<?php include_once(ABSPATH.WPINC.’/feed.php’);
$rss = fetch_feed(‘https://feeds.feedburner.com/wpbeginner’);
$maxitems = $rss->get_item_quantity(5);
$rss_items = $rss->get_items(0, $maxitems);
?>
<ul>
<?php if ($maxitems == 0) echo ‘<li>No items.</li>’;
else
// Loop through each feed item and display each item as a hyperlink.
foreach ( $rss_items as $item ) : ?>
<li>
<a href='<?php echo $item->get_permalink(); ?>’
title='<?php echo ‘Posted ‘.$item->get_date(‘j F Y | g:i a’); ?>’>
<?php echo $item->get_title(); ?></a>
</li>
<?php endforeach; ?>
</ul>

[/php]

Un comentariu

  1. Buna tare resursa asta, multe bloguri sunt facute doar cu acest tip de "hack"
    .-= Filme online a scris ultimul articol: Borat (2006) – Filme online =-.

Spune si tu parerea...