• Resolved stillmo

    (@stillmo)


    I am trying to find a way to insert a specific image on the posts page above the posts themselves.

    Is there a plugin that will allow this or is there something i can add into my php or css?

    Thanks everybody!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can use the storefront_loop_before hook for this purpose. Something like;

    add_action( 'storefront_loop_before', 'jk_blog_image' );
    function jk_blog_image() {
    echo '<img src="path/to/img.jpg" />';
    }

    Cheers!

    Thread Starter stillmo

    (@stillmo)

    Thank you!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Insert image on posts page above posts, below navigation/breadcrumb’ is closed to new replies.