Skip to content

Instantly share code, notes, and snippets.

@anwerashif
Created February 22, 2018 20:22
Show Gist options
  • Select an option

  • Save anwerashif/36800007f0f223b93a421b2099584f11 to your computer and use it in GitHub Desktop.

Select an option

Save anwerashif/36800007f0f223b93a421b2099584f11 to your computer and use it in GitHub Desktop.
Adding Content Before Your Posts
<?php
// Do NOT include PHP opening tag
// Adding Content Before Your Posts
function rs_content() {
if ( is_home( ) )
echo '<div class="before-blog"><h1 class="entry-title blog" itemprop="headline">Premier Publishing Resource</h1>Our Free Resource Helping You with Business Growth Hacking and Revamp WordPress Website</div>';
};
add_action('genesis_before_loop', 'rs_content');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment