wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



has_post_thumbnail › WordPress Filter Hooks

Seit5.1.0
Veraltetn/v
apply_filters( 'has_post_thumbnail', $has_thumbnail, $post, $thumbnail_id )
Parameter: (3)
  • (bool) $has_thumbnail true if the post has a post thumbnail, otherwise false.
    Erforderlich: Ja
  • (int|WP_Post|null) $post Post ID or WP_Post object. Default is global `$post`.
    Erforderlich: Ja
  • (int|false) $thumbnail_id Post thumbnail ID or false if the post does not exist.
    Erforderlich: Ja
Definiert in:
Codex:

Filters whether a post has a post thumbnail.





Quellcode

return (bool) apply_filters( 'has_post_thumbnail', $has_thumbnail, $post, $thumbnail_id );