PHP WordPress functions.php Boilerplate

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP WordPress functions.php Boilerplate相关的知识,希望对你有一定的参考价值。

<?php
if (!is_admin()) wp_deregister_script('jquery');
wp_deregister_script('l10n');
if (function_exists('automatic_feed_links')) {
	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 WordPress functions.php Boilerplate的主要内容,如果未能解决你的问题,请参考以下文章

markdown [wordpress:note] WordPress - 博客CMS由php。 #php #wordpress #cms

php Wordpress Backdoor添加用户#wordpress #php

php [WORDPRESS] - 脚注中的Wordpress动态版权日期#wp #footer #wordpress#functions.php

php [Wordpress]禁用wordpress评论

php [摘录限制] Poner un limite al extracto en wordpress #wordpress #php

如何安装wordpress?