я решил скачать готовую тему WP и посмотреть как оно устроенно внутри
после установки
Я так и не понял как сделать так чтобы лендинг был как на демке.
Никаких опций в теме я не внашел
плагинов никаких не установилось
add_filter('the_content', 'dco_the_content');
function dco_the_content( $content ){
if (get_post_meta(get_the_ID(), 'ver', true)) {
$content .= '<p>Версия: ' . get_post_meta(get_the_ID(), 'ver', true) . '</p>';
}
return $content;
}
add_filter('the_content', 'dco_the_content');
function dco_the_content( $content ){
global $post;
if (get_post_meta($post->ID, 'ver', true)) {
$content .= '<p>Версия: ' . get_post_meta($post->ID, 'ver', true) . '</p>';
}
return $content;
}
add_filter('the_content', 'dco_the_content');
function dco_the_content( $content ){
global $post;
if (get_field( "ver", $post->ID )) {
$content .= '<p>Версия: ' . get_field( "ver", $post->ID ) . '</p>';
}
return $content;
}
<?php
if($newCat == ""){
$cathotela = "88";
} else{
$cathotela = $newCat;
}
?>
<?php $posts = get_posts(array(
'category' => $cathotela,
'orderby' => 'date',
'numberposts' => 3,
'category__in' => array(2,3,4)
)); ?>
<?php if ($posts) : ?>
<?php foreach ($posts as $post) : setup_postdata ($post); ?>
<div class="image_sp col-sm-3 col-xs-12 imsp_el1">
<a href="<?php echo get_permalink(); ?> ">
<?php the_post_thumbnail() ?></a>
<div class="hdsp_text">
<h3><?php the_title(); ?></h3>
</div>
</div>
<?php
endforeach;
wp_reset_postdata();
?>
<?php endif; ?>
$args = array(
'orderby' => 'date',
'numberposts' => 3,
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'category',
'field' => 'id',
'terms' => $cathotela, //array( '53', '115', '27' )
'operator' => 'IN'
),
array(
'taxonomy' => 'category',
'field' => 'id',
'terms' => '88'
)
)
);
$posts = get_posts($args);
Как можно сделать, чтобы записи определённой категории, выводились на страницу — «Страница 1»
<?php
$cur_terms = get_the_terms($post->ID, 'metki');
if (is_array($cur_terms) && !is_wp_error($cur_terms)) {
foreach ($cur_terms as $cur_term) {
$term_link = get_term_link((int) $cur_term->term_id, $cur_term->taxonomy);
// If there was an error, continue to the next term.
if (is_wp_error($term_link)) {
continue;
}
echo '<a href="' . esc_url($term_link) . '">' . $cur_term->name . '</a> ';
}
}
?>