【问题标题】:Prefill Woocommerce Short Description on Post Page在帖子页面上预填充 Woocommerce 简短描述
【发布时间】:2021-02-12 10:08:20
【问题描述】:

我正在尝试在添加新产品时预先填写简短说明。我已经弄清楚如何使用如下所示的主要描述来做到这一点,但无法弄清楚简短描述。

add_filter( 'default_content', 'my_editor_content' );

function my_editor_content( $content ) {

    $content = "This is some custom content I'm adding to the post editor because I hate re-typing it.";

    return $content;
}

我怀疑它是相似的,但有不同的钩子而不是“default_content”有什么想法吗?

【问题讨论】:

    标签: wordpress woocommerce


    【解决方案1】:

    想通了。在阅读之后,我意识到 Woocommerce 使用 WordPress 的摘录作为简短描述。因此,经过反复试验,我发现我正在寻找的钩子是“default_excerpt”。成功了!

    【讨论】:

      猜你喜欢
      • 2022-01-22
      • 1970-01-01
      • 2022-11-30
      • 1970-01-01
      • 2016-07-10
      • 2016-06-12
      • 2021-07-12
      • 1970-01-01
      相关资源
      最近更新 更多