如何在WORDPRESS中将简码插入php代码?

时间:2018-10-19 09:50:31

标签: php wordpress

我想在wordpress中将一个简码添加到php代码中。 我的代码如下:

<h1 class="nd_booking_margin_top_50_responsive">'.__('Make Your Payment 
Here','nd-booking').' :</h1>
<div class="nd_booking_section nd_booking_height_30"></div>
<?php echo do_shortcode(“[pff-paystack id="1597"]”); ?>

我尝试过,但是代码没有显示在页面上。

1 个答案:

答案 0 :(得分:1)

您应该尝试以下方法:

<?php echo do_shortcode('[pff-paystack id="1597"]'); ?>

如果您使用的是自定义简码,则需要像这样传递id参数:

function section_case_study($atts){
    ob_start();
    global $selected_id;
    $selected_id = $atts['id'];
    get_template_part( 'template-parts/section-case-study');
    return ob_get_clean();
}