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 DigitalEssence/5b39dd8dcacb942a67174bc11e5fd287 to your computer and use it in GitHub Desktop.
Save DigitalEssence/5b39dd8dcacb942a67174bc11e5fd287 to your computer and use it in GitHub Desktop.
WordPress - Enfold - PHP - Add Div using functionand add_action
// Simple function to add a div
// Note, the display is set to none so it is only visible in the source code
function custom_stuff(){
?>
<div style="display:none">Find this</div>
<?php
}
add_action('wp_footer', 'custom_stuff');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment