在短码中使用自定义字段

时间:2012-02-04 作者:Pollux Khafra

我正在尝试使用shortocde中的自定义字段作为页面上的下一个gallery滑块。目标是通过在页面创建时使用自定义字段输入相应的id来更改库id。这似乎不工作,我有它的设置,虽然只是调用所有的图像,使我觉得没有价值的画廊id正在调用。

<?php
  global $image_gallery; 
  $image_gallery = get_post_meta($post->ID, \'image_gallery\', TRUE); 
?>
<?php echo do_shortcode(\'[jj-ngg-image-list html_id="about-image-list" gallery="return $image_gallery" max_pictures="4" width="160" height="150" orientation="horizontal"]\'); ?>
<?php ?>

1 个回复
SO网友:Milo

使用普通php字符串串联传递变量:

<?php echo do_shortcode(\'[jj-ngg-image-list html_id="about-image-list" gallery="\' . $image_gallery . \'" max_pictures="4" width="160" height="150" orientation="horizontal"]\'); ?>

结束

相关推荐

Shortcode Variations?

下面的函数在使用时创建一个按钮,如so[btn]按钮文本[/btn]function btn($atts, $content = null) { extract(shortcode_atts(array(\'link\' => \'#\'), $atts)); return \'<a class=\"btn\" href=\"\'.$link.\'\"><span>\' . do_shortcode($content) . \'</span&

在短码中使用自定义字段 - 小码农CODE - 行之有效找到问题解决它

在短码中使用自定义字段

时间:2012-02-04 作者:Pollux Khafra

我正在尝试使用shortocde中的自定义字段作为页面上的下一个gallery滑块。目标是通过在页面创建时使用自定义字段输入相应的id来更改库id。这似乎不工作,我有它的设置,虽然只是调用所有的图像,使我觉得没有价值的画廊id正在调用。

<?php
  global $image_gallery; 
  $image_gallery = get_post_meta($post->ID, \'image_gallery\', TRUE); 
?>
<?php echo do_shortcode(\'[jj-ngg-image-list html_id="about-image-list" gallery="return $image_gallery" max_pictures="4" width="160" height="150" orientation="horizontal"]\'); ?>
<?php ?>

1 个回复
SO网友:Milo

使用普通php字符串串联传递变量:

<?php echo do_shortcode(\'[jj-ngg-image-list html_id="about-image-list" gallery="\' . $image_gallery . \'" max_pictures="4" width="160" height="150" orientation="horizontal"]\'); ?>

相关推荐

redirect if shortcode exists

WordPress初学者。我试图检查用户请求的页面中是否存在短代码,如果存在,则在用户未登录时重定向。function redirect_to_home() { if (has_shortcode(get_the_content(), \'shortcode\')) { if(!is_admin() && !is_user_logged_in()) { //redirect exit(); }