This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
post_type_archive_link filter
Filters the post type archive permalink.
apply_filters( 'post_type_archive_link', string $link, string $post_type )
Description
This is filter hook , its filter the post type archive permalink.
Its consists of two parameters, one is $link, second is $post_type .
It is used in get_post_type_archive_link() which retrieves the permalink for a post type archive.
Parameters
- $link : (string) The post type archive permalink.
- $post_type : (string) Post type name.
Live Example
To run the hook, copy the example below.
$link = apply_filters( 'post_type_archive_link', $link, $post_type ); if ( !empty( $link ) ) { // everything has led up to this point... }
The following example is for adding a hook callback.
// define the post_type_archive_link callback function filter_post_type_archive_link( $link, $post_type ) { // make filter magic happen here... return $link; }; // add the filter add_filter( 'post_type_archive_link', 'filter_post_type_archive_link', 10, 2 );
To remove a hook callback, use the example below.
// remove the filter remove_filter( 'post_type_archive_link', 'filter_post_type_archive_link', 10, 2 );
Explore the latest in WordPress
Trying to stay on top of it all? Get the best tools, resources and inspiration sent to your inbox every Wednesday.