ショートコードを登録したのですが、うまくいきません。ショートコードを投稿またはページに挿入すると、機能しません。しかし、do_shortcode関数を直接使用するとうまくいきます。
これは、関数ファイルに登録するものです
function world_news_section_shortcode($atts, $content ) {
$atts = shortcode_atts(
array(
'section-heading' => '',
'section-more' => '',
'section-link' => '',
), $atts, 'world_news'
);
ob_start();
$world_news = new WP_Query(array(
'post_type' => 'post',
'posts_per_page' => 3,
'category_name' => 'world',
));?>
<div class="lattest-post">
<h2 class="lattest-post-head"><?php echo $atts['section-heading']; ?></h2>
<a href="<?php echo $atts['section-link']; ?>" class="lattest-more"><?php echo $atts['section-more']; ?></a>
<?php while ($world_news->have_posts()) : $world_news->the_post(); ?>
<div class="lattest-post-contant">
<?php the_post_thumbnail( 'image_post' ); ?>
<h4><?php the_title(); ?></h4>
<?php the_excerpt(); ?>
<a href="<?php the_permalink(); ?>">Read More</a>
</div>
<?php endwhile;?>
</div>
<?php $world_news = ob_get_clean();
return $world_news;
}
add_shortcode( 'world_news', 'world_news_section_shortcode' );
この短いコードを投稿とページに使用します。しかし、機能していません。
[world_news section-heading="World news new" section-more="More+" section-link=""]
しかし、このコードをインデックスページに直接使用すると、完全に機能します。
<?php echo do_shortcode('[world_news section-heading="World news new" section-more="More+" section-link=""]'); ?>
短いコードが投稿やページに反映されないのはなぜですか?