Hi
Is there a way to stop this plugin from appearing on my pages? I only want it to show up on my posts?
Thanks.
Hi
Is there a way to stop this plugin from appearing on my pages? I only want it to show up on my posts?
Thanks.
You can try something like this when inserting the code into the template:
<?php
if ( function_exists( 'addIntNav' ) ) {
if (!is_page()) {
addIntNav();
}
}
?>This topic has been closed to new replies.