-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_hash_source
github-actions[bot] edited this page Jun 14, 2026
·
1 revision
Change the taxonomy used by default to generate post tags. Array of terms attached to post.
add_filter(
'wpt_hash_source',
function(
array $tags,
int $post_ID
) {
// Your code here.
return $tags;
},
10,
2
);-
array$tagsArray of post terms. -
int$post_IDPost ID.
array
apply_filters( 'wpt_hash_source', $tags, $post_ID )