Get Recent Comments
Get Recent Comments ermöglicht das Anzeigen der letzten Kommentare in eurer Sidebar. Kompatibel mit allen Wordpress Versionen.
Anleitung:
Inhalt des zip-Ordners in wordpress>content>plugins Ordner hochladen und Plugin aktivieren. Anschließend folgenden Code in der Sidebar an gewünschter Stelle einbinden:
<?php if (function_exists(‘get_recent_comments’)) { ?>
<li><h2><?php _e(‘Recent Comments:’); ?></h2>
<ul>
<?php get_recent_comments(); ?>
</ul>
</li>
<?php } ?><?php if (function_exists(‘get_recent_trackbacks’)) { ?>
<li><h2><?php _e(‘Recent Trackbacks:’); ?></h2>
<ul>
<?php get_recent_trackbacks(); ?>
</ul>
</li>
<?php } ?>
Bilder:
