This file contains hidden or 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 sm_custom_logo() { | |
| echo ' | |
| <style type="text/css"> | |
| #wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before { | |
| background-image: url(' . get_bloginfo('stylesheet_directory') . '/images/custom-logo.png) !important; | |
| background-position: 0 0; | |
| color:rgba(0, 0, 0, 0); | |
| } | |
| #wpadminbar #wp-admin-bar-wp-logo.hover > .ab-item .ab-icon { | |
| background-position: 0 0; |
This file contains hidden or 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 basic_wp_seo() { | |
| global $page, $paged, $post; | |
| $default_keywords = 'auto broker, auto, used car sale, honda, toyota, bmw, nissan, atlanta'; // customize | |
| $output = ''; | |
| // description | |
| $seo_desc = get_post_meta($post->ID, 'mm_seo_desc', true); | |
| $description = get_bloginfo('description', 'display'); | |
| $pagedata = get_post($post->ID); | |
| if (is_singular()) { |