带有变量的WordPress短代码

问题描述 投票:0回答:1

我有一个简码[wc-ps]。我必须将其放在搜索结果页面中,但它不起作用。

$post_title = esc_html( $post->post_title );
$post_title = self::text_replace( $post_title );

$output .= '<div class="smart-search-post-title">' . $post_title . '</div>';
$output .= '<div class="smart-search-post-subtitle">' . do_shortcode('[wc_ps]') . '</div>';

$post_title是产品的标题。 div有do_shortcode('[wc_ps]')。我确实喜欢这个,但是没有显示。我该怎么办?

php wordpress variables search shortcode
1个回答
0
投票
$post_title = esc_html( $post->post_title );
$post_title = self::text_replace( $post_title );
$output = "";
$output .= '<div class="smart-search-post-title">' . $post_title . '</div>';
$output .= '<div class="smart-search-post-subtitle">' . do_shortcode('[wc_ps]') . '</div>';
© www.soinside.com 2019 - 2024. All rights reserved.