在帖子页面上预填充 Woocommerce 简短描述
Posted
技术标签:
【中文标题】在帖子页面上预填充 Woocommerce 简短描述【英文标题】:Prefill Woocommerce Short Description on Post Page 【发布时间】: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”有什么想法吗?
【问题讨论】:
【参考方案1】:想通了。在阅读之后,我意识到 Woocommerce 使用 WordPress 的摘录作为简短描述。因此,经过反复试验,我发现我正在寻找的钩子是“default_excerpt”。成功了!
【讨论】:
以上是关于在帖子页面上预填充 Woocommerce 简短描述的主要内容,如果未能解决你的问题,请参考以下文章