文字出版社函数.php样板
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文字出版社函数.php样板相关的知识,希望对你有一定的参考价值。
I use this to toss all the junk from the header, add a favicon, remove useless admin elements, and block WordPress' ancient jQuery file from embedding.
<?php if (!is_admin()) wp_deregister_script('jquery'); wp_deregister_script('l10n'); automatic_feed_links(); } else { return; } remove_action('wp_head', 'rsd_link'); remove_action('wp_head', 'wp_generator'); remove_action('wp_head', 'feed_links', 2); remove_action('wp_head', 'index_rel_link'); remove_action('wp_head', 'wlwmanifest_link'); remove_action('wp_head', 'feed_links_extra', 3); remove_action('wp_head', 'start_post_rel_link', 10, 0); remove_action('wp_head', 'parent_post_rel_link', 10, 0); remove_action('wp_head', 'adjacent_posts_rel_link', 10, 0); function blog_favicon() { echo '<link rel="Shortcut Icon" type="image/x-icon" href="'.get_bloginfo('wpurl').'/favicon.ico" />'; } add_action('wp_head', 'blog_favicon'); function theme_admin_bar_render() { global $wp_admin_bar; $wp_admin_bar->remove_menu('comments'); $wp_admin_bar->remove_menu('appearance'); } add_action( 'wp_before_admin_bar_render', 'theme_admin_bar_render' );
以上是关于文字出版社函数.php样板的主要内容,如果未能解决你的问题,请参考以下文章