• I am trying to add a static banner image to the top of the post page below the header that only is on the post page. It is more of an identification for the reader to know what the post page is about. Sorry if this topic has been covered. I searched, but couldn’t find an answer that would apply. I’m sure this is a common action, but I am very new to this. thank you

Viewing 6 replies - 1 through 6 (of 6 total)
  • Yahya

    (@yahyasayyidali)

    You can create a custom image field using ACF plugin and hence call the code in the required place if that image needs to be managed from the backend.
    https://wordpress.org/plugins/advanced-custom-fields/
    Or you can directly call the image snippet at the beginning of the specific template.

    Thread Starter olazable

    (@olazable)

    I would like to call the image snippet, but the template is used by many pages and this is the only one i want that image on, but I will try the plugin. Thank you for your reply!

    Thread Starter olazable

    (@olazable)

    Ok the plugin was way more than I am familiar with. I am VERY new to this. Is thee any easy way of copying a snippit and putting it somewhere that will generate the image for only this page?

    @olazable: This is possible; you will need to make a child theme and modify theme files.

    What theme are you using? Where did you download it from? http://codex.wordpress.org/Forum_Welcome#Include_as_Much_Information_as_Possible

    Thread Starter olazable

    (@olazable)

    The site was written by a web designer locally and has created a lot of problems for us as that designer got paid and left a disaster with VERY sloppy coding and all but disappeared from contact. The theme is twenty thirteen, and I am trying to learn wordpress while fixing some of these issues.

    We can’t help with the developer issues, but basically, you need to <?php

    <?php if (is_page(92)) {
    ?>
    YOUR BANNER AD CODE GOES HERE
    <?php
    }
    ?>

    Make and use a child theme.

    Search these forums for “banner one page” for more ideas.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Adding a static image on only the post page’ is closed to new replies.