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_feed_link filter
Filters the post type archive feed link.
apply_filters( 'post_type_archive_feed_link', string $link, string $feed )
Description
This is a filter hook. It filters the post type archive feed link. It consists of two parameters: one is $link, the second is $feed type.
It is used in get_post_type_archive_feed_link()
which retrieves the permalink for a post type archive feed.
Parameters
- $link : (string) The post type archive feed link.
- $feed : (string) Feed type. Possible values include ‘rss2’, ‘atom’.
Live Examples
Basic Usage
To run the hook, copy the example below.
$link = apply_filters( 'weplugins_post_type_archive_feed_link', $link, $feed ); if ( !empty( $link ) ) { // everything has led up to this point... }
Adding a Hook Callback
The following example is for adding a hook callback.
// define the weplugins_post_type_archive_feed_link callback function weplugins_filter_post_type_archive_feed_link( $link, $feed ) { // make filter magic happen here... return $link; }; // add the filter add_filter( 'weplugins_post_type_archive_feed_link', 'weplugins_filter_post_type_archive_feed_link', 10, 2 );
Removing a Hook Callback
To remove a hook callback, use the example below.
// remove the filter remove_filter( 'weplugins_post_type_archive_feed_link', 'weplugins_filter_post_type_archive_feed_link', 10, 2 );
Contact Us
If you need customization, feel free to contact us.
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.