我想获取分配给此模板的帖子并显示内容, 目前,如果我手动输入帖子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);
答案 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;