filtrod 6.1.0
feed_links_extra_show_post_comments_feed
Opis — z kodu źródłowego
Filters whether to display the post comments feed link.
This filter allows to enable or disable the feed link for a singular post in a way that is independent of {@see 'feed_links_show_comments_feed'} (which controls the global comments feed). The result of that filter is accepted as a parameter.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$show_comments_feed | bool | Whether to display the post comments feed link. Defaults to the {@see 'feed_links_show_comments_feed'} filter result. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'feed_links_extra_show_post_comments_feed', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}
// rejestracja funkcji zwrotnej
add_filter( 'feed_links_extra_show_post_comments_feed', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}Popularne w tej kategorii