function wpc_elementor_shortcode( $atts ) {
?>
<div class="owl-menu owl-carousel custom-owl-carousel owl-theme">
<div class="item-slider">
<div class="item-menu">
<?php
global $post;
$myposts = get_posts([
'numberposts' => 10,
'category' => 5,
]);
if( $myposts ){
foreach( $myposts as $post ){
setup_postdata( $post );
?>
<p>Статьи / <?php the_date(); ?></p>
<h3><?php the_title(); ?></h3>
<a class="box-post_link" href="<?php echo get_permalink(); ?>">Читать дальше </a>
<?php
}
} else {
// Постов не найдено
}
wp_reset_postdata(); // Сбрасываем $post
?>
</div>
</div>
</div>
<?php
}
add_shortcode( 'my_elementor_php_output', 'wpc_elementor_shortcode');
<div class="item-menu">
, а на уровень выше.function wpc_elementor_shortcode( $atts ) {
?>
<div class="owl-menu owl-carousel custom-owl-carousel owl-theme">
<div class="item-slider">
<?php
global $post;
$myposts = get_posts([
'numberposts' => 10,
'category' => 5,
]);
if( $myposts ){
foreach( $myposts as $post ){
setup_postdata( $post );
?>
<div class="item-menu">
<p>Статьи / <?php the_date(); ?></p>
<h3><?php the_title(); ?></h3>
<a class="box-post_link" href="<?php echo get_permalink(); ?>">Читать дальше </a>
</div>
<?php
}
} else {
// Постов не найдено
}
wp_reset_postdata(); // Сбрасываем $post
?>
</div>
</div>
<?php
}
add_shortcode( 'my_elementor_php_output', 'wpc_elementor_shortcode');
function wpc_elementor_shortcode( $atts ) {
?>
<div class="owl-menu owl-carousel custom-owl-carousel owl-theme">
<?php
global $post;
$myposts = get_posts([
'numberposts' => 10,
'category' => 5,
]);
if( $myposts ){
foreach( $myposts as $post ){
setup_postdata( $post );
?>
<div class="item-slider">
<div class="item-menu">
<p>Статьи / <?php the_date(); ?></p>
<h3><?php the_title(); ?></h3>
<a class="box-post_link" href="<?php echo get_permalink(); ?>">Читать дальше </a>
</div>
</div>
<?php
}
} else {
// Постов не найдено
}
wp_reset_postdata(); // Сбрасываем $post
?>
</div>
<?php
}
add_shortcode( 'my_elementor_php_output', 'wpc_elementor_shortcode');
function owl_slider_shortcode( $atts ) {
// белый список параметров и значения по умолчанию для шорткода
$atts = shortcode_atts( array(
'category' => '',
'numberposts' => 10,
), $atts );
$html = '';
$myposts = get_posts([
'numberposts' => $atts['numberposts'],
'category' => $atts['category'],
]);
if ( $myposts ) {
$html .= '<div class="owl-menu owl-carousel custom-owl-carousel owl-theme">';
$html .= '<div class="item-slider">';
$html .= '<div class="item-menu">';
foreach ( $myposts as $post ) {
setup_postdata( $post );
$html .= '<span class="post-date">' . get_the_date() . '</span>';
$html .= '<h3 class="post-title">' . get_the_title() . '</h3>';
$html .= '<a class="box-post_link" href="' . get_permalink() . '">Читать дальше</a>';
}
wp_reset_postdata(); // сбрасываем $post
$html .= '</div>';
$html .= '</div>';
$html .= '</div>';
}
return $html;
}
add_shortcode( 'owl-slider', 'owl_slider_shortcode');