Wordpress,以简码插入URL

时间:2019-04-28 15:42:06

标签: wordpress

我正尝试在以下简码中显示/插入一个网址:

<?php echo do_shortcode('[sc_embed_player fileurl="http://www.example.com/wp-content/uploads/my-music/mysong.mp3"]'); ?>

我正在使用一个称为“ add_audio”的ACF字段,这是一个mp3 URL。

我使用了默认的get字段(<?php the_field('field_name'); ?>) 代码以调用url。

我也做了一个变量,也叫($ variable)。

但是没有用!!
这是我得到的错误

  

“请输入错误:语法错误,意外的'add_audio'(T_STRING),   期待,或   /app/public/wp-content/oxygen/component-framework/components/layouts/code-block.php(33):eval()'d   第43行的代码”

我使用了Oxygenbuilder插件和ACF插件。

<?php 
/* 
 * Easy Query Shortcode
 * [easy_query container="div" template="template_906184" posts_per_page="20" post_type="audio_files"]
 */
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1; 
$args = array(
  'post_type' => array('audio_files'), 
  'post_status' => 'publish', 
  'order' => 'DESC', 
  'orderby' => 'date', 
  'posts_per_page' => 20, 
  'paged' => $paged, 
);

// WP_Query
$eq_query = new WP_Query( $args );
if ($eq_query->have_posts()) : // The Loop
$eq_count = 0;
?>
<div class="wp-easy-query paging-style-default grey">
    <div class="wp-easy-query-posts">
        <div>
            <?php 
while ($eq_query->have_posts()): $eq_query->the_post();
$eq_count++;
?>

            <div id="div_block-17-25" class="ct-div-block audio-div">
                <h1 id="headline-18-25" class="ct-headline">
                    <?php the_title(); ?></h1>
                <div id="div_block-20-25" class="ct-div-block">

<?php echo do_shortcode('[sc_embed_player_template1 fileurl="<?php the_field('add_audio'); ?>"]'); ?>



                </div>
            </div>
            <?php endwhile; wp_reset_query(); ?>
        </div>
    </div>
    <?php include(EQ_PAGING); ?>
</div>
<?php endif; ?>

1 个答案:

答案 0 :(得分:1)

只需尝试从代码中删除,就可以这样编写:

<?php echo do_shortcode('[sc_embed_player_template1 fileurl="'.the_field('add_audio').'"]'); ?>