wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes
pings_open › WordPress Function
Depuis1.5.0
Dépréciéen/a
› pings_open ( $post_id = null )
Paramètres: |
|
Retourne: |
|
Défini(e) dans: |
|
Codex: |
Determines whether the current post is open for pings.
For more information on this and similar theme functions, check out the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ Conditional Tags} article in the Theme Developer Handbook.
Source
function pings_open( $post_id = null ) { $_post = get_post( $post_id ); $post_id = $_post ? $_post->ID : 0; $open = ( 'open' == $_post->ping_status ); /** * Filters whether the current post is open for pings. * * @since 2.5.0 * * @param bool $open Whether the current post is open for pings. * @param int $post_id The post ID. */ return apply_filters( 'pings_open', $open, $post_id ); }