Skip to content

Instantly share code, notes, and snippets.

@BoweFrankema
Created December 17, 2015 12:39
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 BoweFrankema/cb944c4793d492d4500d to your computer and use it in GitHub Desktop.
Save BoweFrankema/cb944c4793d492d4500d to your computer and use it in GitHub Desktop.
Actions Code Examples
<?php get_template_part('templates/loops/content', 'page'); ?>
<!-- My Custom Content -->
<p>This is some custom content after my page content is shown. I'm adding this by overwriting my template via a Child Theme!</p>
<!-- My Custom Content -->
<?php do_action('close_page_content'); ?>
<?php get_template_part('templates/loops/content', 'page'); ?>
<!-- My Custom Content -->
<p>This is some custom content after my page content is shown.
I'm adding this by overwriting my template via a Child Theme!</p>
<!-- My Custom Content -->
<?php do_action('close_page_content'); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment