我希望使用现有功能并根据所使用的页面模板(WordPress)更改其输出。下面查看图像是否存在,然后先输出文本,然后输出图像,这样图像就在右侧可视化。这在所有模板上的行为都相同。
我做了一些研究并尝试了一些事情,但似乎无法破解它。我需要的是,如果页面模板是' template_left.php'在内容之前输出cta-image。同样,如果页面模板是' template_right.php'在对象之后输出cta-image。
所有帮助和建议编辑下面感激不尽。
<?php
function call_to_action_shortcode($attrs, $content = null) {
$image = reset(rwmb_meta( "avenir_cta_image", 'type=image&size=large' ));
if ($image) {
$styles = "<style>
.cta-image {
background-image: url('{$image['url']}');
}
</style>";
$output = '<div class="page-cta row">' .
'<div class="content">' .
$content .
'</div>' .
'<div class="cta-image pull-right"></div>' .
'</div>';
return $styles . $output;
}
}
add_shortcode('call-to-action', 'call_to_action_shortcode');
答案 0 :(得分:1)
我认为您正在寻找的WordPress功能是get_page_template_slug($post_id)
以下是在您的情况下如何使用它的示例:
function call_to_action_shortcode($attrs, $content = null) {
$image = reset(rwmb_meta( "avenir_cta_image", 'type=image&size=large' ));
if ($image) {
$template_name = get_page_template_slug(get_the_ID());
if('template_left.php' === $template_name) {
// your code for this template goes here
} else {
// code for other templates here
}
}
}
add_shortcode('call-to-action', 'call_to_action_shortcode');
修改强>
根据documentation for get_page_template_slug,当在循环中使用时,post_id默认为当前帖子,因此您可以省略该参数。在WordPress循环中通常会调用短代码。如果没有页面模板,此函数将返回空;如果不是页面,则此函数将返回false(对于帖子和其他自定义帖子类型,此函数为false)。希望这有帮助!