0
|
1 |
<?php |
|
2 |
/** |
|
3 |
* Press This Display and Handler. |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
* @subpackage Press_This |
|
7 |
*/ |
|
8 |
|
|
9 |
define('IFRAME_REQUEST' , true); |
|
10 |
|
|
11 |
/** WordPress Administration Bootstrap */ |
|
12 |
require_once( dirname( __FILE__ ) . '/admin.php' ); |
|
13 |
|
|
14 |
if ( ! current_user_can( 'edit_posts' ) || ! current_user_can( get_post_type_object( 'post' )->cap->create_posts ) ) |
5
|
15 |
wp_die( __( 'Cheatin’ uh?' ), 403 ); |
0
|
16 |
|
5
|
17 |
if ( empty( $GLOBALS['wp_press_this'] ) ) { |
|
18 |
include( ABSPATH . 'wp-admin/includes/class-wp-press-this.php' ); |
0
|
19 |
} |
|
20 |
|
5
|
21 |
$GLOBALS['wp_press_this']->html(); |