博客

  • 瓜奇主题钩子文档 - Guaqi Hooks

    瓜奇主题钩子文档 - Guaqi Hooks

    一、后端 WordPress/Guaqi 钩子

    • 1. GraphQL 查询字符串钩子

    钩子名称 功能说明 参数
    `guaqi_query_str_common_module_post` 文章列表查询,返回包含标题、摘要、分类等字段的 GraphQL 片段 $str, $module, $page_data
    `guaqi_query_str_common_module_topic` 社区话题列表查询,返回话题标题、节点、互动数据等 $str, $module, $page_data
    `guaqi_query_str_common_module_product` 产品列表查询,返回产品标题、价格、库存等 $str, $module, $page_data
    `guaqi_query_str_common_module_carousel` 轮播图查询,返回图片、链接、标题等 $str, $module, $page_data
    `guaqi_query_str_common_module_coupon` 优惠券查询,返回优惠券码、面值、使用条件等 $str, $module, $page_data
    `guaqi_query_str_common_module_form` 表单查询,返回表单字段、提交地址等 $str, $module, $page_data
    `guaqi_query_str_common_module_promotion` 推广内容查询,返回推广链接、奖励规则等 $str, $module, $page_data
    `guaqi_query_str_common_module_topicMenu` 话题菜单查询,返回菜单项、链接、图标等 $str, $module, $page_data
    `guaqi_query_str_common_module_postMenu` 文章菜单查询,返回菜单项、分类链接等 $str, $module, $page_data
    `guaqi_query_str_common_module_custom` 自定义模块查询,返回自定义配置的字段 $str, $module, $page_data
    • 文章详情页查询

    钩子名称 功能说明 参数
    `guaqi_query_str_article_single_header` 文章详情页头部,返回标题、作者、发布时间、浏览量 $str, $module, $page_data
    `guaqi_query_str_article_single_category` 文章分类信息,返回分类名称、链接、层级 $str, $module, $page_data
    `guaqi_query_str_article_single_interactive` 文章互动数据,返回点赞数、收藏数、评论数、是否点赞/收藏状态 $str, $module, $page_data
    `guaqi_query_str_article_single_comment` 文章评论列表,返回评论内容、回复、用户信息 $str, $module, $page_data
    `guaqi_query_str_article_single_banner` 文章封面/横幅图片,返回图片URL、alt文本 $str, $module, $page_data
    `guaqi_query_str_article_single_video` 文章视频内容,返回视频URL、封面、时长、播放数 $str, $module, $page_data
    `guaqi_query_str_article_single_gallery` 文章图片画廊,返回图片列表、布局方式 $str, $module, $page_data
    `guaqi_query_str_article_single_audio` 文章音频内容,返回音频URL、封面、时长 $str, $module, $page_data
    `guaqi_query_str_article_single_resource` 文章下载资源/附件,返回下载地址、文件名、文件大小 $str, $module, $page_data
    `guaqi_query_str_article_single_content` 文章正文HTML内容,返回处理后的文章内容 $str, $module, $page_data
    `guaqi_query_str_article_single_tags` 文章标签列表,返回标签名称、链接 $str, $module, $page_data

    全部内容下载