/ Published in: PHP
URL: www.codex.wordpress.com/User:Raselkhancse
Subscribe Each Content
Expand |
Embed | Plain Text
<?php /* Plugin Name: subscribe Plugin URI:www.codex.wordpress.com/User:Raselkhancse Description: Plugin Development By Rasel Khan Version:1.0 Author:Rasel Khan Author URI:raselkhan.comuv.com */ function content_func($content){ echo $content; if(is_single()){ ?> <div class="feed"> <h2>Enjoy in this article </h2> <p>Subscrive <a href="<?php bloginfo('rss2_url') ;?>">Rss Feed</a></p> </div> <?php } } add_filter('the_content', 'content_func'); ?>
You need to login to post a comment.
