pre_trackback_post WordPress Action Hook
The pre_trackback_post hook is called before a trackback is inserted into the database. It allows you to modify the trackback data before it is stored.
do_action( 'pre_trackback_post', int $tb_id , string $tb_url , string $charset , string $title , string $excerpt , string $blog_name ) #
Fires before the trackback is added to a post.
Contents
Parameters
- $tb_id
(int)Post ID related to the trackback.
- $tb_url
(string)Trackback URL.
- $charset
(string)Character Set.
- $title
(string)Trackback Title.
- $excerpt
(string)Trackback Excerpt.
- $blog_name
(string)Blog Name.
Source
File: wp-trackback.php
Changelog
Version | Description |
---|---|
4.7.0 | Introduced. |