-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_custom_tag
github-actions[bot] edited this page Jun 14, 2026
·
1 revision
Filter the value of a custom template tag.
add_filter(
'wpt_custom_tag',
function(
string $tag_value,
int $post_ID
) {
// Your code here.
return $tag_value;
},
10,
2
);-
string$tag_valueThe output for a custom tag. Default empty. -
int$post_IDThe post ID.
string
apply_filters( 'wpt_custom_tag', '', $post_ID )