| 1212 | | if ( 'post' != $post->post_type && ( $post_type_object = get_post_type_object( $post->post_type ) ) ) { |
| 1213 | | $sendback .= '?post_type=' . $post->post_type; |
| 1214 | | $sendback_text = sprintf( _x('Go to All %s', 'post type general name: Posts, Pages, etc.'), $post_type_object->labels->name ); |
| 1215 | | } else { |
| 1216 | | $sendback_text = __('Go to All Posts'); |
| 1217 | | } |
| | 1212 | if ( 'post' != $post->post_type ) |
| | 1213 | $sendback = add_query_arg( 'post_type', $post->post_type, $sendback ); |
| | 1214 | |
| | 1215 | $sendback_text = get_post_type_object( $post->post_type )->labels->all_items; |