wordpress - 获取分配给模板的帖子

时间:2017-07-24 21:20:30

标签: php wordpress

我想获取分配给此模板的帖子并显示内容, 目前,如果我手动输入帖子ID,我只能显示帖子内容。如果将帖子分配给此模板并在woocommerce页面中显示内容,我只想显示内容

StringWriter writer = new StringWriter();
VelocityContext context = new VelocityContext();
context.put("payload", "some payload")
Template template = this.velocityEngine.getTemplate("/com/email/templates/my_template.vm");
template.merge(context, writer);

1 个答案:

答案 0 :(得分:0)

<强>更新

如果当前页面使用特定模板,您可以尝试使用get_page_template_slug()函数来检查:

  while ( have_posts() ) : the_post();

  $current_template = get_page_template_slug( get_the_ID() );

  if ($current_template == 'signup.php' )  {
      the_content();
  }

  endwhile;