-1

我在 wordpress 站点中有一个函数文件,其中包含在呈现网站上的页面时由其相关挂钩调用的各种函数。

一个特定的函数运行良好,但我现在在函数代码中添加了一个与 Wordpress 插件“Collapse-O-Matic”相关的短代码。呈现页面时,短代码显示为方括号中的短代码本身!我想我对如何呈现简码的结果有些不理解,并想知道是否有人能够向我解释如何正确地做到这一点。

简码是[expand title="Open" swaptitle="Close"]Target Content[/expand],我把它放在这个函数中如下(请注意这不是函数内的所有代码):

<ul class="admin">
                    <?php
                    // loop through rows (sub repeater)
                    while( have_rows('item_list_details') ): the_row() 
                        // display each item as a list
                        ?>
                            <?php

                                $date = new DateTime(get_sub_field('date'));
                                $now = new DateTime(Date('Y-m-d'));
                                $diff = $now->diff($date);

                                if ($diff->days > $latest):    //Use $diff->days and not $diff->d
                            ?>
                                <li class='research'>
                            <?php else: ?>
                                <li class='researchLatest'>
                            <?php endif;?>
                           <div class='itemTitle'>
                                    <?php $link = get_sub_field('link_url'); if( $link ): ?>
                                    <a href="<?php echo $link['url']; ?>" target="<?php echo $link['target']; ?>" title="<?php echo $link['title']; ?>">
                                    <?php endif; ?>
                                    <?php the_sub_field('link_name'); ?>
                                    <?php $link = get_sub_field('link_url'); if( $link ): ?>
                                    </a>
                                    <?php endif; ?><p class='alert'> - <strong>NEW</strong></p>
                                </div>
                                <br/>
                                <div class="itemDescription">
                                    [expand title="Open" swaptitle="Close"]<?php the_sub_field('link_description'); ?>[/expand]
                                </div>
                            </li>   
                    <?php endwhile; ?>
                    </ul>`

如您所见,短代码 ( <?php the_sub_field('link_description'); ?>) 中有一个 php 表达式,但希望它仍然可以正确呈现。

4

2 回答 2

1

您正在寻找的功能是do_shortcode().

一般来说,这只是一个问题:

echo do_shortcode('[shortcode]whatever[/shortcode]');

此外,您正在使用the_sub_field()from ACF,它直接输出并且不返回任何内容,因此您无法将其结果传递给do_shortcode().

您可以get_sub_field()改用,并捕获输出,然后将所有内容传递给do_shortcode().

例如:

$linkDescription   = get_sub_field('link_description');
$renderedShortcode = do_shortcode("[expand title="Open" swaptitle="Close"]$linkDescription[/expand]");

echo $renderedShortcode;

如果您需要在使用前检查短代码是否存在,您可以shortcode_exists()使用。

例如


if (shortcode_exists('expand')) {
    echo do_shortcode("[expand title="Open" swaptitle="Close"]$linkDescription[/expand]");
}
else {
    echo $linkDescription;
}

文档:

于 2019-02-11T14:41:41.323 回答
0

在您的代码中,您必须使用 wordpress 函数 do_shortcode( $string )

<?php echo do_shortcode("[expand title=\"Open\" swaptitle=\"Close\"]".get_sub_field('link_description')."[/expand]") ?>

您实际上可以将混合了 html 和短代码的整个块传递给此函数,它将返回一个字符串,其中所有内容都呈现出来。

这也很明显

$output=do_shortcode("[expand title=\"Open\" swaptitle=\"Close\"]".get_sub_field('link_description')."[/expand]");

编辑:根据 yivi 的输入修复 get_sub_field

于 2019-02-11T13:57:41.207 回答