feed_links_extra_show_post_type_archive_feed
Filters whether to display the post type archive feed link.
Usage
add_filter( 'feed_links_extra_show_post_type_archive_feed', 'wp_kama_feed_links_extra_show_post_type_archive_filter' ); /** * Function for `feed_links_extra_show_post_type_archive_feed` filter-hook. * * @param bool $show Whether to display the post type archive feed link. * * @return bool */ function wp_kama_feed_links_extra_show_post_type_archive_filter( $show ){ // filter... return $show; }
- $show(true|false)
- Whether to display the post type archive feed link.
Default: true
Changelog
Since 6.1.0 | Introduced. |
Where the hook is called
feed_links_extra_show_post_type_archive_feed
wp-includes/general-template.php 3229
$show_post_type_archive_feed = apply_filters( 'feed_links_extra_show_post_type_archive_feed', true );