Skip to content

Instantly share code, notes, and snippets.

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 AbhishekGhosh/fd6e8bf1bd370662fd80ebfebd1f019d to your computer and use it in GitHub Desktop.
Save AbhishekGhosh/fd6e8bf1bd370662fd80ebfebd1f019d to your computer and use it in GitHub Desktop.
Genesis custom homepage content via genesis_before_content_sidebar_wrap Hook
<?php if(is_front_page() && !is_paged()) : ?>
<div id="pagewrap-tcw">
<?php
$id = 5670;
$p = get_page($id);
echo apply_filters('the_content', $p->post_content);
?>
</div>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment