get_delete_post_link
函数
get_delete_post_link ( $post = 0, $deprecated = '', $force_delete = false )
- 参数
-
-
(int|WP_Post)
$post
Optional. Post ID or post object. Default is the global `$post`.- Required: 否
-
(string)
$deprecated
Not used.- Required: 否
- Default: (empty)
-
(bool)
$force_delete
Optional. Whether to bypass Trash and force deletion. Default false.- Required: 否
- Default: false
-
(int|WP_Post)
- 返回值
-
- (string|void) The delete post link URL for the given post.
- 定义位置
-
-
wp-includes/link-template.php
, line 1546
-
wp-includes/link-template.php
- 引入
- 2.9.0
- 弃用
- –
Retrieves the delete posts link for post.
Can be used within the WordPress loop or outside of it, with any post type.
function get_delete_post_link( $post = 0, $deprecated = '', $force_delete = false ) {
if ( ! empty( $deprecated ) ) {
_deprecated_argument( __FUNCTION__, '3.0.0' );
}
$post = get_post( $post );
if ( ! $post ) {
return;
}
$post_type_object = get_post_type_object( $post->post_type );
if ( ! $post_type_object ) {
return;
}
if ( ! current_user_can( 'delete_post', $post->ID ) ) {
return;
}
$action = ( $force_delete || ! EMPTY_TRASH_DAYS ) ? 'delete' : 'trash';
$delete_link = add_query_arg( 'action', $action, admin_url( sprintf( $post_type_object->_edit_link, $post->ID ) ) );
/**
* Filters the post delete link.
*
* @since 2.9.0
*
* @param string $link The delete link.
* @param int $post_id Post ID.
* @param bool $force_delete Whether to bypass the Trash and force deletion. Default false.
*/
return apply_filters( 'get_delete_post_link', wp_nonce_url( $delete_link, "$action-post_{$post->ID}" ), $post->ID, $force_delete );
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。


