WordPress › Get Recent Comments WordPress Plugins

bu plugini kurup aktif ettikten sonra, footer'a uygun bir yere aşağıdaki kodu ekleyiniz.

<?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 } ?>