mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
8 lines
211 B
Text
8 lines
211 B
Text
add_action( 'amp_post_template_css', 'wp_amp_css_remove_siteicon' );
|
|
function wp_amp_css_remove_siteicon( $amp_template ) {
|
|
?>
|
|
.amp-wp-header .amp-wp-site-icon {
|
|
display: none;
|
|
}
|
|
<?php
|
|
}
|