在标题中输出帖子/页面正在使用的主题模板文件
add_action('wp_head', 'show_template');
function show_template() {
global $template;
print_r($template);
}
如果您的主题使用post_class,则缩短默认的DIV输出。
如果您的主题使用类似
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
您的来源中可能会有疯狂的长div,看起来可能像这样甚至更长:
<div id="post-4" class="post-4 post type-post hentry category-uncategorized category-test category-test-1-billion category-test2 category-test3 category-testing">
这实际上可能会开始使您的源变得混乱,并且在大多数情况下似乎没有必要,将3-4深度足够好。
对于最上面的示例,我们可以像这样对输出进行切片:
// slice crazy long div outputs
function category_id_class($classes) {
global $post;
foreach((get_the_category($post->ID)) as $category)
$classes[] = $category->category_nicename;
return array_slice($classes, 0,5);
}
add_filter('post_class', 'category_id_class');
它将输出切成仅包括前5个值,因此上面的示例变为:
<div id="post-4" class="post-4 post type-post hentry category-uncategorized">
使类别档案库显示所有帖子,无论帖子类型如何:适用于自定义帖子类型
function any_ptype_on_cat($request) {
if ( isset($request['category_name']) )
$request['post_type'] = 'any';
return $request;
}
add_filter('request', 'any_ptype_on_cat');
删除不需要的仪表板项目
该商品已经发布,但没有完整的商品清单。尤其是那些烦人的“传入链接”!
add_action('wp_dashboard_setup', 'my_custom_dashboard_widgets');
function my_custom_dashboard_widgets() {
global $wp_meta_boxes;
//Right Now - Comments, Posts, Pages at a glance
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']);
//Recent Comments
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']);
//Incoming Links
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);
//Plugins - Popular, New and Recently updated Wordpress Plugins
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);
//Wordpress Development Blog Feed
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);
//Other Wordpress News Feed
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);
//Quick Press Form
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']);
//Recent Drafts List
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts']);
}
删除“更多内容”页面跳转**
而是返回页面顶部。您知道如何单击“阅读更多”,它会跳到页面中令人讨厌的位置,这使得它仅按正常加载页面就不会跳!
function remove_more_jump_link($link) {
$offset = strpos($link, '#more-');
if ($offset) {
$end = strpos($link, '"',$offset);
}
if ($end) {
$link = substr_replace($link, '', $offset, $end-$offset);
}
return $link;
}
add_filter('the_content_more_link', 'remove_more_jump_link');
根据用户名限制ADMIN菜单项,用实际用户名替换用户名。
function remove_menus()
{
global $menu;
global $current_user;
get_currentuserinfo();
if($current_user->user_login == 'username')
{
$restricted = array(__('Posts'),
__('Media'),
__('Links'),
__('Pages'),
__('Comments'),
__('Appearance'),
__('Plugins'),
__('Users'),
__('Tools'),
__('Settings')
);
end ($menu);
while (prev($menu)){
$value = explode(' ',$menu[key($menu)][0]);
if(in_array($value[0] != NULL?$value[0]:"" , $restricted)){unset($menu[key($menu)]);}
}// end while
}// end if
}
add_action('admin_menu', 'remove_menus');
//或者您可以使用if($ current_user-> user_login!='admin')代替,可能更有用
设置标签云的样式
//tag cloud custom
add_filter('widget_tag_cloud_args','style_tags');
function style_tags($args) {
$args = array(
'largest' => '10',
'smallest' => '10',
'format' => 'list',
);
return $args;
}
这里的选项的完整参考(有很多!)http://codex.wordpress.org/Function_Reference/wp_tag_cloud
更改默认RSS小部件更新计时器
(默认是6或12个小时我忘记了(1800 = 30分钟)。
add_filter( 'wp_feed_cache_transient_lifetime', create_function('$fixrss', 'return 1800;') );