Changeset 14099
- Timestamp:
- 04/16/2010 02:29:10 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/meta-boxes.php
r13905 r14099 195 195 <?php 196 196 if ( current_user_can( "delete_post", $post->ID ) ) { 197 if ( !EMPTY_TRASH_DAYS ) { 198 $delete_url = wp_nonce_url( add_query_arg( array('action' => 'delete', 'post' => $post->ID), admin_url( 'post.php' ) ), "delete-${post_type}_{$post->ID}" ); 197 if ( !EMPTY_TRASH_DAYS ) 199 198 $delete_text = __('Delete Permanently'); 200 } else { 201 $delete_url = wp_nonce_url( add_query_arg( array('action' => 'trash', 'post' => $post->ID), admin_url( 'post.php' ) ), "trash-${post_type}_{$post->ID}" ); 199 else 202 200 $delete_text = __('Move to Trash'); 203 }?>204 <a class="submitdelete deletion" href="<?php echo $delete_url; ?>"><?php echo $delete_text; ?></a><?php201 ?> 202 <a class="submitdelete deletion" href="<?php echo get_delete_post_link($post->ID); ?>"><?php echo $delete_text; ?></a><?php 205 203 } ?> 206 204 </div> -
trunk/wp-admin/includes/template.php
r14091 r14099 1360 1360 $actions['trash'] = "<a class='submitdelete' title='" . esc_attr(__('Move this post to the Trash')) . "' href='" . get_delete_post_link($post->ID) . "'>" . __('Trash') . "</a>"; 1361 1361 if ( 'trash' == $post->post_status || !EMPTY_TRASH_DAYS ) 1362 $actions['delete'] = "<a class='submitdelete' title='" . esc_attr(__('Delete this post permanently')) . "' href='" . wp_nonce_url( admin_url( sprintf($post_type_object->_edit_link . '&action=delete', $post->ID) ), 'delete-' . $post->post_type . '_' . $post->ID) . "'>" . __('Delete Permanently') . "</a>";1362 $actions['delete'] = "<a class='submitdelete' title='" . esc_attr(__('Delete this post permanently')) . "' href='" . get_delete_post_link($post->ID, '', true) . "'>" . __('Delete Permanently') . "</a>"; 1363 1363 } 1364 1364 if ( in_array($post->post_status, array('pending', 'draft')) ) { -
trunk/wp-includes/link-template.php
r14068 r14099 822 822 * Retrieve delete posts link for post. 823 823 * 824 * Can be used within the WordPress loop or outside of it. Can be used with 825 * pages, posts, attachments, and revisions. 824 * Can be used within the WordPress loop or outside of it, with any post type. 826 825 * 827 826 * @since 2.9.0 828 827 * 829 828 * @param int $id Optional. Post ID. 830 * @param string $context Optional, default to display. How to write the '&', defaults to '&'. 831 * @return string 832 */ 833 function get_delete_post_link($id = 0, $context = 'display') { 829 * @param string $deprecated Not used. 830 * @param bool $force_delete Whether to bypass trash and force deletion. Default is false. 831 * @return string 832 */ 833 function get_delete_post_link( $id = 0, $deprecated = '', $force_delete = false ) { 834 if ( ! empty( $deprecated ) ) 835 _deprecated_argument( __FUNCTION__, '3.0.0' ); 836 834 837 if ( !$post = &get_post( $id ) ) 835 838 return; 836 837 if ( 'display' == $context )838 $action = 'action=trash&';839 else840 $action = 'action=trash&';841 842 if ( 'display' == $context )843 $action = '&action=trash';844 else845 $action = '&action=trash';846 839 847 840 $post_type_object = get_post_type_object( $post->post_type ); … … 852 845 return; 853 846 854 return apply_filters( 'get_delete_post_link', wp_nonce_url( admin_url( sprintf($post_type_object->_edit_link . $action, $post->ID) ), "trash-{$post->post_type}_" . $post->ID), $post->ID, $context ); 847 $action = ( $force_delete || !EMPTY_TRASH_DAYS ) ? 'delete' : 'trash'; 848 849 $delete_link = add_query_arg( 'action', $action, admin_url( sprintf( $post_type_object->_edit_link, $post->ID ) ) ); 850 851 return apply_filters( 'get_delete_post_link', wp_nonce_url( $delete_link, "$action-{$post->post_type}_{$post->ID}" ), $post->ID, $force_delete ); 855 852 } 856 853
Note: See TracChangeset
for help on using the changeset viewer.