헤더에서 게시물 / 페이지가 사용중인 테마 템플리트 파일 출력
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">
이것은 실제로 소스를 어지럽히 기 시작하고 대부분의 경우 다소 불필요 해 보입니다.
상위 예제의 경우 다음과 같이 출력을 슬라이스 할 수 있습니다.
// 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');
username을 기준으로 ADMIN 메뉴 항목을 제한하고 username을 실제 사용자 이름으로 바꿉니다.
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;') );