我无法让 wp_query 在简码中工作。我认为根据 wp 法典我认为它是正确的,但它不断破坏我的网站 - 500 错误。它位于 genesis 自定义主题的外部文件中。
该文件位于子文件夹中,我已包含_once 文件并将 add_shortcode 函数添加到 functions.php 文件中。当我注释掉 include_once 时,该站点很好,所以我猜我在函数中遗漏了一些东西。
<?php
function exp_post_slider_shortcode( $atts ) {
$a = shortcode_atts( array(
'cat' => '15',
'posts_per_page' => '3',
), $atts );
$output = '';
$args = array(
'cat' => $a['cat'],
'posts_per_page' => $a['posts_per_page'],
);
$post_slider = new WP_Query( $args );
if ( $post_slider->have_posts() ) {
// The Loop
$output .= '<div class="exp-post-slider-container">'
$output .= '<div class="owl-carousel owl-theme exp-post-slider">'
while ( $post_slider->have_posts() ) {
$post_slider->the_post();
$feat_image_url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
$output .= '<div class="exp-cat-slide" style="background-image:url('.$feat_image_url.'); background-size:cover; background-repeat:no-repeat;">';
$output .= '<div class="exp-slide-post-info">';
$output .= '<h2>' . get_the_title() . '</h2>';
$output .= '<p>' . get_the_author() . ' | ' . get_the_date() . '</p>';
$output .= '<p><a href="' . get_permalink() . '" class="exp-post-link-btn">View Post</a>';
$output .= '</div></div>';
}
wp_reset_postdata();
} else {
$output .= '<div class="exp-cat-slide" style="background-image:url(https://webclient.co/explore/wp-content/uploads/2019/04/looking-out-no-posts.jpg); background-size:cover; background-repeat:no-repeat;">';
$output .= '<div class="exp-slide-post-info">';
$output .= '<h2>No Adventures Posted Here Yet</h2>';
$output .= '<p>Check Back Soon!</p>';
$output .= '<p><a href="https://webclient.co/explore/blog/" class="exp-post-link-btn">Check Out Our Blog</a>';
$output .= '</div></div>';
}
$output .= '</div>'
$output .= '</div>'
return $output;
} ?>
我正在尝试将 to 输出到 owl 滑块。让它作为主题钩子中的函数运行没有问题,但我需要它作为具有类别和帖子参数数量的简码工作。