Category: Snippets

How To Modify The Default Settings On Screen Options

[php] /////////// // Modify default screen options on Post page /////////// add_filter( ‘hidden_meta_boxes’, ‘custom_hidden_meta_boxes’ ); function custom_hidden_meta_boxes( $hidden ) { $hidden[] = ‘formatdiv’; $hidden[] =… View More

How To Add Code To WordPress Header

[php] add_action(‘wp_head’, ‘custom_google_ads’); function custom_google_ads(){?>PASTE HEADER CODE HERE<?php};> [/php]