This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'the_content', 'wpcandy_time_ago' ); | |
function wpcandy_time_ago ( $content ) { | |
$content .= " | |
" . __( 'Posted ', 'wpcandy' ) . human_time_diff( get_the_time('U'), current_time('timestamp') ) . __( ' ago', 'wpcandy' ); | |
return $content; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Use WordPress conditional tags to detect the user’s web browser | |
and add a class with it’s name to the body tag. | |
*/ | |
<?php | |
add_filter('body_class','browser_body_class'); | |
function browser_body_class($classes) { | |
global $is_lynx, $is_gecko, $is_IE, $is_opera, $is_NS4, $is_safari, $is_chrome, $is_iphone; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Чтобы отобразить массив запросов в вашей теме, | |
добавьте следующий код в любой файл шаблона темы: | |
*/ | |
if ( current_user_can( 'manage_options' ) ) { | |
global $wpdb; | |
print_r( $wpdb->queries ); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Прекрасным отладочным параметром является SAVEQUERIES. | |
Активация этого параметра сохраняет все запросы базы данных в глобальный массив, | |
который может отображаться на вашей странице. Это может помочь в отладке проблем с запросами, | |
а также позволит увидеть, что именно делает WordPress при загрузке каждой страницы. | |
Если вы работаете над темой или плагином и не можете получить отображение нужного числа записей, | |
этот отладочный параметр покажет, что именно WordPress запрашивает у базы данных. | |
Активируйте его, присвоив ему значение true: | |
*/ |