ショートコードで wp_query を動作させることができません。wpコーデックスによると正しいと思いますが、サイトが壊れ続けます-500エラー。これはジェネシス カスタム テーマの外部ファイルにあります。
ファイルはサブフォルダーにあり、ファイルを include_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;
} ?>
フクロウのスライダーに出力しようとしています。テーマフック内の関数として実行するのに問題はありませんが、カテゴリと投稿パラメーターの数を持つショートコードとして機能する必要があります。