Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
add_filter( 'pre_get_document_title','sm_pre_get_document_title'); function sm_pre_get_document_title( $param ){ global $post; if( $post->ID != 6486 ) return; return 'Тест'; }
if( $_POST[name] === value ) {}
<?php the_title(); ?> <?php the_content(); ?>
if( function_exists('current_user_can') && !current_user_can('manage_options') ) { add_filter('show_admin_bar', '__return_false'); }
function disable_wp_style() { remove_action( 'wp_head', 'wp_print_styles', 8 ); } add_action( 'wp_head', 'disable_wp_style', 1 );