• The code is working correctly and showing my text at the bottom of every post but is also showing on the main blog page. How do I correct this?

    Thanks,

Viewing 1 replies (of 1 total)
  • Plugin Author Corey Salzano

    (@salzano)

    Try editing the plugin to add another condition on line 27.

    Right now, it probably looks like this:

    if( !is_page( ) && file_exists( $fileName )){

    I think this change will produce the result you desire:

    if( !is_home() && !is_page( ) && file_exists( $fileName )){

Viewing 1 replies (of 1 total)
  • The topic ‘Showing at bottom of page’ is closed to new replies.