Существует шорткод:
Можно ли его модернизировать таким образом, что бы при клике на него не попадать на страницу поста а попадать в архив, где все посты будут с той же датой?
<?php
$archive_year = get_the_time('Y');
$archive_month = get_the_time('m');
$archive_day = get_the_time('d');
?>
<a href="<?php echo get_day_link( $archive_year, $archive_month, $archive_day); ?>"><?php echo get_the_date('d.m.Y'); ?></a>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php endwhile; endif; ?>
$offset = $_POST['offset'];
$args = array(
'post__not_in' => array('12', '14', '21', '23'),
'category__in' => $category__in,
'posts_per_page' => 3,
'post_status' => 'publish',
'post_type' => array('post', 'page'),
'offset' => $offset
);
$query = new WP_Query($args);
Отключение всех плагинов не помогает, перезаливка папки wp-includes из архива, скаченного с wordpress.org - не помогает.
( кстати как лучше, самописно или плагином?)
И вроде-бы что-то получилось
но при нажатии на запись, получаю 404. Подскажите, в чем может быть ошибка?
body {
display: none;
}
fontSpy('Relative Book', {
timeOut: 100000,
success: function() {
$('body').show();
},
failure: function() {
$('body').show();
}
});
вордпресса
джумлы
До не давнего времени
<?php
global $post;
$post = get_post('ID_ЗАПИСИ');
if($post) :
setup_postdata($post);
?>
<div class="col-md-4 col-sm-4 col-xs-6 howWeDo__innerItem">
<div class="howWeDo__item">
<div class="howWeDo__header"><img src="<?php bloginfo('template_directory'); ?>/img/icons/howWeDo_1.png" alt="" class="howWeDo__img"></div>
<div class="howWeDo__footer"><?php the_content(); ?></div>
</div>
</div>
<?php wp_reset_query(); endif; ?>