I made simple plugin and i would like to work this plugin only below full posts but not in home page. Plugin only read images from my database and put images below posts.
function get_image_big()
{
echo file_get_contents('http://demotivators.us/widget/big_demotivators.php');
}
add_action( 'loop_end', 'get_image_big');
How off this script in wordpress home page in all themes ?
apologize for my english.
use
is_home()andis_front_page()calls to detect that home page is shown.