将文本追加到$POST->POST_EXCEPT

时间:2016-01-27 作者:Mike Oberdick

我试图在WooCommerce中使用$post->post_excerpt. 目前我正在使用以下代码:

add_action( \'woocommerce_single_product_summary\', \'d4tw_show_dimensions\', 20 );
function d4tw_show_dimensions() {
    global $product;
    $dimensions = $product->get_dimensions();

    if ( ! empty( $dimensions ) ) {
        echo \'<span class="dimensions"> Length: \' . $dimensions . \'</span>\';
    }
}
这会在产品摘要之后显示维度,但它是在自己的行上。如何将同一段落中的维度附加到post\\u摘录中?

2 个回复
SO网友:Pmpr

你可以得到excerpt 使用:

$excerpt = get_the_excerpt();
并根据需要附加或前置

SO网友:Mike Oberdick

最后,我只是将段落设置为显示:inline块,它允许产品尺寸向上流动到该行。

相关推荐

使用_excerpt()命令不会显示自动摘录

我一直在寻找这个问题的答案,但一直没有找到任何答案:为什么我在给定网站上使用\\u摘录()时,它不会自动打印内容的前几个字符?只有在文章的WordPress摘要字段中添加了内容时,才会打印摘录。如何解决此问题?对于其他网站,这不会发生,如果没有在摘要上添加文本,则会自动生成摘录。摘录不是自动生成的原因是什么?我的情况与此类似:Automatic Excerpt Not Working但遗憾的是,你的回答没有给我任何建议。