按子比主题源码整理内置短代码、隐藏内容、文章列表、商品卡片、付费阅读和新增短代码的边界。
按子比主题源码整理内置短代码、隐藏内容、文章列表、商品卡片、付费阅读和新增短代码的边界。 #注册位置 子比主题内置短代码主要在这些位置注册: 短代码 注册位置 回调 reply inc/functions/zib-theme.php reply_to_read() postsbox inc/functions/zib-theme.php add_shortcode_postsbox() postslists inc/functions/zib-theme.php add_shortcode_postslists() hidecontent inc/functions/zib-theme.php add_shortcode_hidecontent() productbox inc/functions/shop/shop.php zib_shop_add_shortcode_productbox() payshow zibpay/functions.php zibpay_to_show() 短代码适合在文章、页面、编辑器内容、小工具或可配置文本中插入可复用展示片段。它不适合承载复杂写入流程,也不适合直接处理支付回调、文件上传、订单状态变更。 #reply reply 是评论可见短代码: php复制add_shortcode('reply', 'reply_to_read'); 核心判断: php复制if (is_super_admin()) { return '...'; } else { if (zib_use