<?php
echo get_the_post_thumbnail( 100, array(80,80)); ?>
// 100 - id записи
?>
<?php
$page_ids = array( 11, 34, 76, 237 ); // ID постов
if( is_single( $page_ids ) ) {
// тут показываем рекламу которая нужна на страницах этих постов
} else {
// тут показываем рекламу для всех остальных постов
}
function searchExcludePages($query) {
if(!is_admin()){
if ($query->is_search) {
$query->set('post_type', 'post');
}
}
return $query;
}
add_filter('pre_get_posts','searchExcludePages');
Тостер сломался?www.elremont.ru/small_rbt/bt_rem77.php
Только у меня тостер постоянно не работает? То 504, то 503не только
add_filter('manage_posts_columns', 'my_posts_columns_id', 5);
add_action('manage_posts_custom_column', 'my_posts_custom_id_columns', 5, 2);
function my_posts_columns_id($columns){
$columns['my_post_id'] = __('ID');
return $columns;
}
function my_posts_custom_id_columns($column_name, $id){
if($column_name === 'my_post_id'){
echo $id;
}
}
$post_id = get_the_ID();
update_post_meta($post_id, 'custom_post_id', $post_id);
add_filter('the_content','your_delete_function');
function your_delete_function($content) {
return str_replace('?<p> </p>?', '', $content);
}
$fields = array(
'comment' => '<textarea name="comment"></textarea>',
'author' => '<input type="text" name="author" placeholder="Введите Ваше имя">',
'email' => '<input type="email" name="email" placeholder="Введите Ваш Email (необязательно)">',
'url' => '<input type="text" name="url" placeholder="Введите Ваш телефон (необязательно)">'
);
comment_form(array(
'comment_field' => '',
'fields' => apply_filters( 'comment_form_default_fields', $fields )
));
$custom = get_post_custom( $post->ID );
<?php if ( isset($custom['имя-поля']) && !empty($custom['имя-поля'][0])) : ?>
Ляля <?php echo $custom['имя-поля'][0]; ?> - <?php the_title(); ?> лялял <?php the_title();>
<?php endif; ?>