相关帖子短信由邮政编码

时间:2017-02-27 09:06:38

标签: php wordpress shortcode

我编写了以下代码,用于显示相关帖子ID的短代码,类似这样的[rpsid the_ID=2210]应该显示id = 2210的帖子,但它不起作用。有什么问题?感谢。

add_shortcode('rpsid', 'rp');

function rp( $atts ) {
  $atts = shortcode_atts( [
    'the_ID'      => '',
  ], $atts );

  $args = [ 'the_ID' => $atts['the_ID'] ];
  $query = new WP_Query( $args );

  if ( $query->have_posts() ) : $query->the_post();
  ob_start();  ?>


      <div class="rps">
      <a href="<?php the_permalink(); ?>"><p>Also read:</p><span> <?php the_title(); ?></span></a>
      </div>

  <?php endif; wp_reset_postdata();
  return ob_get_clean();
}

0 个答案:

没有答案