Skip to content

Instantly share code, notes, and snippets.

@domantasg
Created September 11, 2017 09:06
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 domantasg/741412729d65dbc30d0f32e9bc793ccd to your computer and use it in GitHub Desktop.
Save domantasg/741412729d65dbc30d0f32e9bc793ccd to your computer and use it in GitHub Desktop.
<?php
/*
* Global Functions
*/
// Remove 'auto-paragraphing' from posts/pages
remove_filter( 'the_content', 'wpautop' );
/*
* Admin Control Panel Functions
*/
// Add my menu page
add_action( 'admin_menu', 'ht_My_Menu_Page' );
function ht_My_Menu_Page(){
// CODE GOES HERE
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment