我正在尝试创建自己的快捷码,可以用来列出WooCommerce产品。标题和内容显示良好,但是我尝试使用的html格式(例如<strong>
和<p>
) 显示在标题和内容之后,而不是与标题和内容一起显示。
function gr_woo_product_function() {
$grcontent;
$args = array(
\'post_type\' => \'product\',
\'posts_per_page\' => 30,
\'orderby\' => \'ASC\'
);
$my_query = new WP_Query($args);
while ($my_query->have_posts()) : $my_query->the_post();
$grcontent.="<p><strong>".the_title()."</strong><br/>".the_content()."</p>";
endwhile;
return $grcontent;
}
add_shortcode(\'wooproduct\', \'gr_woo_product_function\');
每个标题都应该用粗体,每个产品都应该有自己的段落。但是,每个产品都列在第一位,然后是一堆空段落。