Created
December 17, 2015 12:39
-
-
Save BoweFrankema/cb944c4793d492d4500d to your computer and use it in GitHub Desktop.
Actions Code Examples
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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'); ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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