pings_open [ WordPress Function ]
pings_open ( $post_id = null )
| Parameters: |
|
| Uses: |
|
| Returns: |
|
| Defined at: |
|
Whether the current post is open for pings.
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- Function Reference/pings open « WordPress Codex
Description. This Conditional Tag checks if comments are allowed for the current Post or a given Post ID. This is a boolean function, meaning it returns either ...
codex.wordpress.org - #5761 (Make comments_open and pings_open filterable ...
This makes it possible to filter the result of the comments_open and pings_open post status flags. It also changes wp-comments-post.php and wp-trackback.php ...
core.trac.wordpress.org - pings_open Wordpress hook details -- Adam Brown, BYU Political ...
Detailed information about every action hook and filter used in WordPress. Makes Plugin API easier to use. Lists appearance, file location, and deprecation data ...
adambrown.info - pings_open() WordPress function reference, arguments and source ...
function pings_open( $post_id = NULL ) { $_post = get_post($post_id); $open = ( 'open' == $_post->ping_status ); return apply_filters( 'pings_open', $open, ...
queryposts.com