Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active April 3, 2017 22:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/9cc9c1a5c15d4594e26a8e524ae0dcde to your computer and use it in GitHub Desktop.
Save braddalton/9cc9c1a5c15d4594e26a8e524ae0dcde to your computer and use it in GitHub Desktop.
add_filter( 'genesis_before_content_sidebar_wrap','back_to_blog_link' );
function back_to_blog_link() {
if ( is_singular( 'post' ) )
echo '<a href="https://example.com/blog/">← Go Back To Our Blog</a>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment