钩子文档

phone_content

💡 云策文档标注

概述

phone_content 是一个 WordPress 过滤器钩子,用于在保存通过电子邮件提交的文章内容之前对其进行过滤。

关键要点

  • 这是一个过滤器钩子,允许开发者在保存电子邮件提交的文章内容前修改或处理内容。
  • 参数 $content 是字符串类型,代表原始的电子邮件内容。
  • 该钩子从 WordPress 版本 1.2.0 开始引入。

📄 原文内容

Filters the content of the post submitted by email before saving.

Parameters

$contentstring
The email content.

Source

$post_content = apply_filters( 'phone_content', $content );

Changelog

Version Description
1.2.0 Introduced.