WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
1126 | $thumbnail_html = wp_get_attachment_image( $thumbnail_id, 'post-thumbnail' ); |
1127 | if ( !empty( $thumbnail_html ) ) { |
1128 | $ajax_nonce = wp_create_nonce( 'set_post_thumbnail-' . $post->ID ); |
1129 | $content = sprintf( $set_thumbnail_link, $upload_iframe_src, $thumbnail_html ); |
1130 | $content .= '<p class="hide-if-no-js"><a href="#" id="remove-post-thumbnail" onclick="WPRemoveThumbnail(\'' . $ajax_nonce . '\');return false;">' . esc_html__( 'Remove featured image' ) . '</a></p>'; |
1131 | } |
1132 | $content_width = $old_content_width; |
1133 | } |
1134 |
|
1135 | return apply_filters( 'admin_post_thumbnail_html', $content, $post->ID ); |
1136 | } |
1137 |
|
1138 | /** |
1139 | * Check to see if the post is currently being edited by another user. |
1140 | * |
1141 | * @since 2.5.0 |
1142 | * |
1143 | * @param int $post_id ID of the post to check for editing |
1144 | * @return bool|int False: not locked or locked by current user. Int: user ID of user with lock. |