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
/** | |
* Load Frontend Notices | |
*/ | |
function post_type_notice($type, $color){ | |
//echo 'post_type' == $type ? '<p style="color:'.$color.';text-align:center;padding-left:2em;"><strong>POST TYPE:</strong> ' . get_post_type() . '</p>' : ''; | |
//echo 'header' == $type ? '<p style="border-top: 3px solid '.$color.';"> </p>' : ''; | |
//echo 'section' == $type ? 'style="background: '.$color.';"' : ''; |
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
function additional_admin_color_schemes() { | |
//Get the theme directory | |
$theme_dir = get_template_directory_uri(); | |
//Ocean | |
wp_admin_css_color( 'ocean', __( 'Ocean' ), | |
$theme_dir . '/admin-colors/ocean/colors.min.css', | |
array( '#aa9d88', '#9ebaa0', '#738e96', '#f2fcff' ) | |
); | |
} |
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
DELETE pm | |
FROM wp_postmeta pm | |
LEFT JOIN wp_posts wp ON wp.ID = pm.post_id | |
WHERE wp.ID IS NULL |