This file is a collection of useful WordPress database queries. These queries range from clean up and maintenance to enhancements and recovery. Commands are listed in no particular order...
TOC
This file is a collection of useful WordPress database queries. These queries range from clean up and maintenance to enhancements and recovery. Commands are listed in no particular order...
TOC
| <?php | |
| //Determine the wordpress page type | |
| function detectPageType() { | |
| if ( is_front_page() && get_option('show_on_front') == 'posts' ) { | |
| $pageType = 'front-page'; | |
| } else if ( is_home() && get_option('show_on_front') == 'page' ) { | |
| $pageType = 'front-page'; | |
| } else if ( is_attachment() ) { |