phone_content filter-hook . WP 1.2.0
Filters the content of the post submitted by email before saving.
Usage
add_filter( 'phone_content', 'filter_function_name_8381' ); function filter_function_name_8381( $content ){ // filter... return $content; }
- $content(string)
- The email content.
Changelog
Since 1.2.0 | Introduced. |
Where the hook is called
In file: /wp-mail.php
wp-mail.php 212
$post_content = apply_filters( 'phone_content', $content );