0
|
1 |
<?php |
|
2 |
/** |
|
3 |
* WordPress Dashboard Widget Administration Screen API |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
* @subpackage Administration |
|
7 |
*/ |
|
8 |
|
|
9 |
/** |
|
10 |
* Registers dashboard widgets. |
|
11 |
* |
|
12 |
* Handles POST data, sets up filters. |
|
13 |
* |
|
14 |
* @since 2.5.0 |
|
15 |
*/ |
|
16 |
function wp_dashboard_setup() { |
|
17 |
global $wp_registered_widgets, $wp_registered_widget_controls, $wp_dashboard_control_callbacks; |
|
18 |
$wp_dashboard_control_callbacks = array(); |
|
19 |
$screen = get_current_screen(); |
|
20 |
|
|
21 |
/* Register Widgets and Controls */ |
|
22 |
|
|
23 |
$response = wp_check_browser_version(); |
|
24 |
|
|
25 |
if ( $response && $response['upgrade'] ) { |
|
26 |
add_filter( 'postbox_classes_dashboard_dashboard_browser_nag', 'dashboard_browser_nag_class' ); |
|
27 |
if ( $response['insecure'] ) |
|
28 |
wp_add_dashboard_widget( 'dashboard_browser_nag', __( 'You are using an insecure browser!' ), 'wp_dashboard_browser_nag' ); |
|
29 |
else |
|
30 |
wp_add_dashboard_widget( 'dashboard_browser_nag', __( 'Your browser is out of date!' ), 'wp_dashboard_browser_nag' ); |
|
31 |
} |
|
32 |
|
|
33 |
// Right Now |
|
34 |
if ( is_blog_admin() && current_user_can('edit_posts') ) |
5
|
35 |
wp_add_dashboard_widget( 'dashboard_right_now', __( 'At a Glance' ), 'wp_dashboard_right_now' ); |
0
|
36 |
|
|
37 |
if ( is_network_admin() ) |
|
38 |
wp_add_dashboard_widget( 'network_dashboard_right_now', __( 'Right Now' ), 'wp_network_dashboard_right_now' ); |
|
39 |
|
5
|
40 |
// Activity Widget |
|
41 |
if ( is_blog_admin() ) { |
|
42 |
wp_add_dashboard_widget( 'dashboard_activity', __( 'Activity' ), 'wp_dashboard_site_activity' ); |
0
|
43 |
} |
|
44 |
|
|
45 |
// QuickPress Widget |
5
|
46 |
if ( is_blog_admin() && current_user_can( 'edit_posts' ) ) { |
|
47 |
$quick_draft_title = sprintf( '<span class="hide-if-no-js">%1$s</span> <span class="hide-if-js">%2$s</span>', __( 'Quick Draft' ), __( 'Drafts' ) ); |
|
48 |
wp_add_dashboard_widget( 'dashboard_quick_press', $quick_draft_title, 'wp_dashboard_quick_press' ); |
0
|
49 |
} |
5
|
50 |
|
|
51 |
// WordPress News |
|
52 |
wp_add_dashboard_widget( 'dashboard_primary', __( 'WordPress News' ), 'wp_dashboard_primary' ); |
|
53 |
|
|
54 |
if ( is_network_admin() ) { |
0
|
55 |
|
5
|
56 |
/** |
|
57 |
* Fires after core widgets for the Network Admin dashboard have been registered. |
|
58 |
* |
|
59 |
* @since 3.1.0 |
|
60 |
*/ |
|
61 |
do_action( 'wp_network_dashboard_setup' ); |
0
|
62 |
|
5
|
63 |
/** |
|
64 |
* Filter the list of widgets to load for the Network Admin dashboard. |
|
65 |
* |
|
66 |
* @since 3.1.0 |
|
67 |
* |
|
68 |
* @param array $dashboard_widgets An array of dashboard widgets. |
|
69 |
*/ |
0
|
70 |
$dashboard_widgets = apply_filters( 'wp_network_dashboard_widgets', array() ); |
|
71 |
} elseif ( is_user_admin() ) { |
5
|
72 |
|
|
73 |
/** |
|
74 |
* Fires after core widgets for the User Admin dashboard have been registered. |
|
75 |
* |
|
76 |
* @since 3.1.0 |
|
77 |
*/ |
0
|
78 |
do_action( 'wp_user_dashboard_setup' ); |
5
|
79 |
|
|
80 |
/** |
|
81 |
* Filter the list of widgets to load for the User Admin dashboard. |
|
82 |
* |
|
83 |
* @since 3.1.0 |
|
84 |
* |
|
85 |
* @param array $dashboard_widgets An array of dashboard widgets. |
|
86 |
*/ |
0
|
87 |
$dashboard_widgets = apply_filters( 'wp_user_dashboard_widgets', array() ); |
|
88 |
} else { |
5
|
89 |
|
|
90 |
/** |
|
91 |
* Fires after core widgets for the admin dashboard have been registered. |
|
92 |
* |
|
93 |
* @since 2.5.0 |
|
94 |
*/ |
0
|
95 |
do_action( 'wp_dashboard_setup' ); |
5
|
96 |
|
|
97 |
/** |
|
98 |
* Filter the list of widgets to load for the admin dashboard. |
|
99 |
* |
|
100 |
* @since 2.5.0 |
|
101 |
* |
|
102 |
* @param array $dashboard_widgets An array of dashboard widgets. |
|
103 |
*/ |
0
|
104 |
$dashboard_widgets = apply_filters( 'wp_dashboard_widgets', array() ); |
|
105 |
} |
|
106 |
|
|
107 |
foreach ( $dashboard_widgets as $widget_id ) { |
|
108 |
$name = empty( $wp_registered_widgets[$widget_id]['all_link'] ) ? $wp_registered_widgets[$widget_id]['name'] : $wp_registered_widgets[$widget_id]['name'] . " <a href='{$wp_registered_widgets[$widget_id]['all_link']}' class='edit-box open-box'>" . __('View all') . '</a>'; |
|
109 |
wp_add_dashboard_widget( $widget_id, $name, $wp_registered_widgets[$widget_id]['callback'], $wp_registered_widget_controls[$widget_id]['callback'] ); |
|
110 |
} |
|
111 |
|
|
112 |
if ( 'POST' == $_SERVER['REQUEST_METHOD'] && isset($_POST['widget_id']) ) { |
|
113 |
check_admin_referer( 'edit-dashboard-widget_' . $_POST['widget_id'], 'dashboard-widget-nonce' ); |
|
114 |
ob_start(); // hack - but the same hack wp-admin/widgets.php uses |
|
115 |
wp_dashboard_trigger_widget_control( $_POST['widget_id'] ); |
|
116 |
ob_end_clean(); |
|
117 |
wp_redirect( remove_query_arg( 'edit' ) ); |
|
118 |
exit; |
|
119 |
} |
|
120 |
|
5
|
121 |
/** This action is documented in wp-admin/edit-form-advanced.php */ |
|
122 |
do_action( 'do_meta_boxes', $screen->id, 'normal', '' ); |
0
|
123 |
|
|
124 |
/** This action is documented in wp-admin/edit-form-advanced.php */ |
5
|
125 |
do_action( 'do_meta_boxes', $screen->id, 'side', '' ); |
0
|
126 |
} |
|
127 |
|
|
128 |
function wp_add_dashboard_widget( $widget_id, $widget_name, $callback, $control_callback = null, $callback_args = null ) { |
|
129 |
$screen = get_current_screen(); |
|
130 |
global $wp_dashboard_control_callbacks; |
|
131 |
|
|
132 |
if ( $control_callback && current_user_can( 'edit_dashboard' ) && is_callable( $control_callback ) ) { |
|
133 |
$wp_dashboard_control_callbacks[$widget_id] = $control_callback; |
|
134 |
if ( isset( $_GET['edit'] ) && $widget_id == $_GET['edit'] ) { |
|
135 |
list($url) = explode( '#', add_query_arg( 'edit', false ), 2 ); |
|
136 |
$widget_name .= ' <span class="postbox-title-action"><a href="' . esc_url( $url ) . '">' . __( 'Cancel' ) . '</a></span>'; |
|
137 |
$callback = '_wp_dashboard_control_callback'; |
|
138 |
} else { |
|
139 |
list($url) = explode( '#', add_query_arg( 'edit', $widget_id ), 2 ); |
|
140 |
$widget_name .= ' <span class="postbox-title-action"><a href="' . esc_url( "$url#$widget_id" ) . '" class="edit-box open-box">' . __( 'Configure' ) . '</a></span>'; |
|
141 |
} |
|
142 |
} |
|
143 |
|
5
|
144 |
$side_widgets = array( 'dashboard_quick_press', 'dashboard_primary' ); |
0
|
145 |
|
|
146 |
$location = 'normal'; |
|
147 |
if ( in_array($widget_id, $side_widgets) ) |
|
148 |
$location = 'side'; |
|
149 |
|
|
150 |
$priority = 'core'; |
|
151 |
if ( 'dashboard_browser_nag' === $widget_id ) |
|
152 |
$priority = 'high'; |
|
153 |
|
|
154 |
add_meta_box( $widget_id, $widget_name, $callback, $screen, $location, $priority, $callback_args ); |
|
155 |
} |
|
156 |
|
|
157 |
function _wp_dashboard_control_callback( $dashboard, $meta_box ) { |
5
|
158 |
echo '<form method="post" class="dashboard-widget-control-form">'; |
0
|
159 |
wp_dashboard_trigger_widget_control( $meta_box['id'] ); |
|
160 |
wp_nonce_field( 'edit-dashboard-widget_' . $meta_box['id'], 'dashboard-widget-nonce' ); |
|
161 |
echo '<input type="hidden" name="widget_id" value="' . esc_attr($meta_box['id']) . '" />'; |
|
162 |
submit_button( __('Submit') ); |
|
163 |
echo '</form>'; |
|
164 |
} |
|
165 |
|
|
166 |
/** |
|
167 |
* Displays the dashboard. |
|
168 |
* |
|
169 |
* @since 2.5.0 |
|
170 |
*/ |
|
171 |
function wp_dashboard() { |
|
172 |
$screen = get_current_screen(); |
5
|
173 |
$columns = absint( $screen->get_columns() ); |
|
174 |
$columns_css = ''; |
|
175 |
if ( $columns ) { |
|
176 |
$columns_css = " columns-$columns"; |
|
177 |
} |
0
|
178 |
|
|
179 |
?> |
5
|
180 |
<div id="dashboard-widgets" class="metabox-holder<?php echo $columns_css; ?>"> |
|
181 |
<div id="postbox-container-1" class="postbox-container"> |
0
|
182 |
<?php do_meta_boxes( $screen->id, 'normal', '' ); ?> |
|
183 |
</div> |
5
|
184 |
<div id="postbox-container-2" class="postbox-container"> |
0
|
185 |
<?php do_meta_boxes( $screen->id, 'side', '' ); ?> |
|
186 |
</div> |
5
|
187 |
<div id="postbox-container-3" class="postbox-container"> |
0
|
188 |
<?php do_meta_boxes( $screen->id, 'column3', '' ); ?> |
|
189 |
</div> |
5
|
190 |
<div id="postbox-container-4" class="postbox-container"> |
0
|
191 |
<?php do_meta_boxes( $screen->id, 'column4', '' ); ?> |
|
192 |
</div> |
|
193 |
</div> |
|
194 |
|
|
195 |
<?php |
|
196 |
wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); |
|
197 |
wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false ); |
|
198 |
|
|
199 |
} |
|
200 |
|
5
|
201 |
// |
|
202 |
// Dashboard Widgets |
|
203 |
// |
0
|
204 |
|
5
|
205 |
/** |
|
206 |
* Dashboard widget that displays some basic stats about the site. |
|
207 |
* |
|
208 |
* Formerly 'Right Now'. A streamlined 'At a Glance' as of 3.8. |
|
209 |
* |
|
210 |
* @since 2.7.0 |
|
211 |
*/ |
|
212 |
function wp_dashboard_right_now() { |
|
213 |
?> |
|
214 |
<div class="main"> |
|
215 |
<ul> |
|
216 |
<?php |
|
217 |
// Posts and Pages |
|
218 |
foreach ( array( 'post', 'page' ) as $post_type ) { |
|
219 |
$num_posts = wp_count_posts( $post_type ); |
|
220 |
if ( $num_posts && $num_posts->publish ) { |
|
221 |
if ( 'post' == $post_type ) { |
|
222 |
$text = _n( '%s Post', '%s Posts', $num_posts->publish ); |
|
223 |
} else { |
|
224 |
$text = _n( '%s Page', '%s Pages', $num_posts->publish ); |
|
225 |
} |
|
226 |
$text = sprintf( $text, number_format_i18n( $num_posts->publish ) ); |
|
227 |
$post_type_object = get_post_type_object( $post_type ); |
|
228 |
if ( $post_type_object && current_user_can( $post_type_object->cap->edit_posts ) ) { |
|
229 |
printf( '<li class="%1$s-count"><a href="edit.php?post_type=%1$s">%2$s</a></li>', $post_type, $text ); |
|
230 |
} else { |
|
231 |
printf( '<li class="%1$s-count"><span>%2$s</span></li>', $post_type, $text ); |
|
232 |
} |
0
|
233 |
|
5
|
234 |
} |
0
|
235 |
} |
5
|
236 |
// Comments |
|
237 |
$num_comm = wp_count_comments(); |
|
238 |
if ( $num_comm && $num_comm->approved ) { |
|
239 |
$text = sprintf( _n( '%s Comment', '%s Comments', $num_comm->approved ), number_format_i18n( $num_comm->approved ) ); |
|
240 |
?> |
|
241 |
<li class="comment-count"><a href="edit-comments.php"><?php echo $text; ?></a></li> |
|
242 |
<?php |
|
243 |
if ( $num_comm->moderated ) { |
|
244 |
/* translators: Number of comments in moderation */ |
|
245 |
$text = sprintf( _nx( '%s in moderation', '%s in moderation', $num_comm->moderated, 'comments' ), number_format_i18n( $num_comm->moderated ) ); |
|
246 |
?> |
|
247 |
<li class="comment-mod-count"><a href="edit-comments.php?comment_status=moderated"><?php echo $text; ?></a></li> |
|
248 |
<?php |
|
249 |
} |
0
|
250 |
} |
|
251 |
|
5
|
252 |
/** |
|
253 |
* Filter the array of extra elements to list in the 'At a Glance' |
|
254 |
* dashboard widget. |
|
255 |
* |
|
256 |
* Prior to 3.8.0, the widget was named 'Right Now'. Each element |
|
257 |
* is wrapped in list-item tags on output. |
|
258 |
* |
|
259 |
* @since 3.8.0 |
|
260 |
* |
|
261 |
* @param array $items Array of extra 'At a Glance' widget items. |
|
262 |
*/ |
|
263 |
$elements = apply_filters( 'dashboard_glance_items', array() ); |
0
|
264 |
|
5
|
265 |
if ( $elements ) { |
|
266 |
echo '<li>' . implode( "</li>\n<li>", $elements ) . "</li>\n"; |
|
267 |
} |
0
|
268 |
|
5
|
269 |
?> |
|
270 |
</ul> |
|
271 |
<?php |
|
272 |
update_right_now_message(); |
0
|
273 |
|
|
274 |
// Check if search engines are asked not to index this site. |
5
|
275 |
if ( ! is_network_admin() && ! is_user_admin() && current_user_can( 'manage_options' ) && '1' != get_option( 'blog_public' ) ) { |
|
276 |
|
|
277 |
/** |
|
278 |
* Filter the link title attribute for the 'Search Engines Discouraged' |
|
279 |
* message displayed in the 'At a Glance' dashboard widget. |
|
280 |
* |
|
281 |
* Prior to 3.8.0, the widget was named 'Right Now'. |
|
282 |
* |
|
283 |
* @since 3.0.0 |
|
284 |
* |
|
285 |
* @param string $title Default attribute text. |
|
286 |
*/ |
|
287 |
$title = apply_filters( 'privacy_on_link_title', __( 'Your site is asking search engines not to index its content' ) ); |
|
288 |
|
|
289 |
/** |
|
290 |
* Filter the link label for the 'Search Engines Discouraged' message |
|
291 |
* displayed in the 'At a Glance' dashboard widget. |
|
292 |
* |
|
293 |
* Prior to 3.8.0, the widget was named 'Right Now'. |
|
294 |
* |
|
295 |
* @since 3.0.0 |
|
296 |
* |
|
297 |
* @param string $content Default text. |
|
298 |
*/ |
|
299 |
$content = apply_filters( 'privacy_on_link_text' , __( 'Search Engines Discouraged' ) ); |
0
|
300 |
|
|
301 |
echo "<p><a href='options-reading.php' title='$title'>$content</a></p>"; |
|
302 |
} |
5
|
303 |
?> |
|
304 |
</div> |
|
305 |
<?php |
|
306 |
/* |
|
307 |
* activity_box_end has a core action, but only prints content when multisite. |
|
308 |
* Using an output buffer is the only way to really check if anything's displayed here. |
|
309 |
*/ |
|
310 |
ob_start(); |
0
|
311 |
|
5
|
312 |
/** |
|
313 |
* Fires at the end of the 'At a Glance' dashboard widget. |
|
314 |
* |
|
315 |
* Prior to 3.8.0, the widget was named 'Right Now'. |
|
316 |
* |
|
317 |
* @since 2.5.0 |
|
318 |
*/ |
0
|
319 |
do_action( 'rightnow_end' ); |
5
|
320 |
|
|
321 |
/** |
|
322 |
* Fires at the end of the 'At a Glance' dashboard widget. |
|
323 |
* |
|
324 |
* Prior to 3.8.0, the widget was named 'Right Now'. |
|
325 |
* |
|
326 |
* @since 2.0.0 |
|
327 |
*/ |
0
|
328 |
do_action( 'activity_box_end' ); |
5
|
329 |
|
|
330 |
$actions = ob_get_clean(); |
|
331 |
|
|
332 |
if ( !empty( $actions ) ) : ?> |
|
333 |
<div class="sub"> |
|
334 |
<?php echo $actions; ?> |
|
335 |
</div> |
|
336 |
<?php endif; |
0
|
337 |
} |
|
338 |
|
|
339 |
function wp_network_dashboard_right_now() { |
|
340 |
$actions = array(); |
|
341 |
if ( current_user_can('create_sites') ) |
|
342 |
$actions['create-site'] = '<a href="' . network_admin_url('site-new.php') . '">' . __( 'Create a New Site' ) . '</a>'; |
|
343 |
if ( current_user_can('create_users') ) |
|
344 |
$actions['create-user'] = '<a href="' . network_admin_url('user-new.php') . '">' . __( 'Create a New User' ) . '</a>'; |
|
345 |
|
|
346 |
$c_users = get_user_count(); |
|
347 |
$c_blogs = get_blog_count(); |
|
348 |
|
|
349 |
$user_text = sprintf( _n( '%s user', '%s users', $c_users ), number_format_i18n( $c_users ) ); |
|
350 |
$blog_text = sprintf( _n( '%s site', '%s sites', $c_blogs ), number_format_i18n( $c_blogs ) ); |
|
351 |
|
|
352 |
$sentence = sprintf( __( 'You have %1$s and %2$s.' ), $blog_text, $user_text ); |
|
353 |
|
|
354 |
if ( $actions ) { |
|
355 |
echo '<ul class="subsubsub">'; |
|
356 |
foreach ( $actions as $class => $action ) { |
|
357 |
$actions[ $class ] = "\t<li class='$class'>$action"; |
|
358 |
} |
|
359 |
echo implode( " |</li>\n", $actions ) . "</li>\n"; |
|
360 |
echo '</ul>'; |
|
361 |
} |
|
362 |
?> |
|
363 |
<br class="clear" /> |
|
364 |
|
|
365 |
<p class="youhave"><?php echo $sentence; ?></p> |
5
|
366 |
|
|
367 |
|
|
368 |
<?php |
|
369 |
/** |
|
370 |
* Fires in the Network Admin 'Right Now' dashboard widget |
|
371 |
* just before the user and site search form fields. |
|
372 |
* |
|
373 |
* @since MU |
|
374 |
* |
|
375 |
* @param null $unused |
|
376 |
*/ |
|
377 |
do_action( 'wpmuadminresult', '' ); |
|
378 |
?> |
0
|
379 |
|
|
380 |
<form action="<?php echo network_admin_url('users.php'); ?>" method="get"> |
|
381 |
<p> |
5
|
382 |
<label class="screen-reader-text" for="search-users"><?php _e( 'Search Users' ); ?></label> |
|
383 |
<input type="search" name="s" value="" size="30" autocomplete="off" id="search-users"/> |
0
|
384 |
<?php submit_button( __( 'Search Users' ), 'button', 'submit', false, array( 'id' => 'submit_users' ) ); ?> |
|
385 |
</p> |
|
386 |
</form> |
|
387 |
|
|
388 |
<form action="<?php echo network_admin_url('sites.php'); ?>" method="get"> |
|
389 |
<p> |
5
|
390 |
<label class="screen-reader-text" for="search-sites"><?php _e( 'Search Sites' ); ?></label> |
|
391 |
<input type="search" name="s" value="" size="30" autocomplete="off" id="search-sites"/> |
0
|
392 |
<?php submit_button( __( 'Search Sites' ), 'button', 'submit', false, array( 'id' => 'submit_sites' ) ); ?> |
|
393 |
</p> |
|
394 |
</form> |
|
395 |
<?php |
5
|
396 |
/** |
|
397 |
* Fires at the end of the 'Right Now' widget in the Network Admin dashboard. |
|
398 |
* |
|
399 |
* @since MU |
|
400 |
*/ |
0
|
401 |
do_action( 'mu_rightnow_end' ); |
5
|
402 |
|
|
403 |
/** |
|
404 |
* Fires at the end of the 'Right Now' widget in the Network Admin dashboard. |
|
405 |
* |
|
406 |
* @since MU |
|
407 |
*/ |
0
|
408 |
do_action( 'mu_activity_box_end' ); |
|
409 |
} |
|
410 |
|
5
|
411 |
/** |
|
412 |
* The Quick Draft widget display and creation of drafts. |
|
413 |
* |
|
414 |
* @since 3.8.0 |
|
415 |
* |
|
416 |
* @param string $error_msg Optional. Error message. Default false. |
|
417 |
*/ |
|
418 |
function wp_dashboard_quick_press( $error_msg = false ) { |
0
|
419 |
global $post_ID; |
|
420 |
|
|
421 |
/* Check if a new auto-draft (= no new post_ID) is needed or if the old can be used */ |
|
422 |
$last_post_id = (int) get_user_option( 'dashboard_quick_press_last_post_id' ); // Get the last post_ID |
|
423 |
if ( $last_post_id ) { |
|
424 |
$post = get_post( $last_post_id ); |
|
425 |
if ( empty( $post ) || $post->post_status != 'auto-draft' ) { // auto-draft doesn't exists anymore |
5
|
426 |
$post = get_default_post_to_edit( 'post', true ); |
0
|
427 |
update_user_option( get_current_user_id(), 'dashboard_quick_press_last_post_id', (int) $post->ID ); // Save post_ID |
|
428 |
} else { |
|
429 |
$post->post_title = ''; // Remove the auto draft title |
|
430 |
} |
|
431 |
} else { |
|
432 |
$post = get_default_post_to_edit( 'post' , true); |
|
433 |
$user_id = get_current_user_id(); |
|
434 |
// Don't create an option if this is a super admin who does not belong to this site. |
|
435 |
if ( ! ( is_super_admin( $user_id ) && ! in_array( get_current_blog_id(), array_keys( get_blogs_of_user( $user_id ) ) ) ) ) |
|
436 |
update_user_option( $user_id, 'dashboard_quick_press_last_post_id', (int) $post->ID ); // Save post_ID |
|
437 |
} |
|
438 |
|
|
439 |
$post_ID = (int) $post->ID; |
|
440 |
?> |
|
441 |
|
5
|
442 |
<form name="post" action="<?php echo esc_url( admin_url( 'post.php' ) ); ?>" method="post" id="quick-press" class="initial-form hide-if-no-js"> |
|
443 |
|
|
444 |
<?php if ( $error_msg ) : ?> |
|
445 |
<div class="error"><?php echo $error_msg; ?></div> |
|
446 |
<?php endif; ?> |
|
447 |
|
0
|
448 |
<div class="input-text-wrap" id="title-wrap"> |
5
|
449 |
<label class="screen-reader-text prompt" for="title" id="title-prompt-text"> |
|
450 |
|
|
451 |
<?php |
|
452 |
/** This filter is documented in wp-admin/edit-form-advanced.php */ |
|
453 |
echo apply_filters( 'enter_title_here', __( 'Title' ), $post ); |
|
454 |
?> |
|
455 |
</label> |
|
456 |
<input type="text" name="post_title" id="title" autocomplete="off" /> |
0
|
457 |
</div> |
|
458 |
|
5
|
459 |
<div class="textarea-wrap" id="description-wrap"> |
|
460 |
<label class="screen-reader-text prompt" for="content" id="content-prompt-text"><?php _e( 'What’s on your mind?' ); ?></label> |
|
461 |
<textarea name="content" id="content" class="mceEditor" rows="3" cols="15" autocomplete="off"></textarea> |
0
|
462 |
</div> |
|
463 |
|
|
464 |
<p class="submit"> |
5
|
465 |
<input type="hidden" name="action" id="quickpost-action" value="post-quickdraft-save" /> |
0
|
466 |
<input type="hidden" name="post_ID" value="<?php echo $post_ID; ?>" /> |
|
467 |
<input type="hidden" name="post_type" value="post" /> |
5
|
468 |
<?php wp_nonce_field( 'add-post' ); ?> |
|
469 |
<?php submit_button( __( 'Save Draft' ), 'primary', 'save', false, array( 'id' => 'save-post' ) ); ?> |
0
|
470 |
<br class="clear" /> |
|
471 |
</p> |
|
472 |
|
|
473 |
</form> |
5
|
474 |
<?php |
|
475 |
wp_dashboard_recent_drafts(); |
0
|
476 |
} |
|
477 |
|
|
478 |
/** |
5
|
479 |
* Show recent drafts of the user on the dashboard. |
0
|
480 |
* |
5
|
481 |
* @since 2.7.0 |
0
|
482 |
*/ |
5
|
483 |
function wp_dashboard_recent_drafts( $drafts = false ) { |
|
484 |
if ( ! $drafts ) { |
|
485 |
$query_args = array( |
|
486 |
'post_type' => 'post', |
|
487 |
'post_status' => 'draft', |
|
488 |
'author' => get_current_user_id(), |
|
489 |
'posts_per_page' => 4, |
|
490 |
'orderby' => 'modified', |
|
491 |
'order' => 'DESC' |
|
492 |
); |
|
493 |
$drafts = get_posts( $query_args ); |
|
494 |
if ( ! $drafts ) { |
|
495 |
return; |
|
496 |
} |
|
497 |
} |
0
|
498 |
|
5
|
499 |
echo '<div class="drafts">'; |
|
500 |
if ( count( $drafts ) > 3 ) { |
|
501 |
echo '<p class="view-all"><a href="' . esc_url( admin_url( 'edit.php?post_status=draft' ) ) . '">' . _x( 'View all', 'drafts' ) . "</a></p>\n"; |
|
502 |
} |
|
503 |
echo '<h4 class="hide-if-no-js">' . __( 'Drafts' ) . "</h4>\n<ul>"; |
0
|
504 |
|
5
|
505 |
$drafts = array_slice( $drafts, 0, 3 ); |
|
506 |
foreach ( $drafts as $draft ) { |
|
507 |
$url = get_edit_post_link( $draft->ID ); |
|
508 |
$title = _draft_or_post_title( $draft->ID ); |
|
509 |
echo "<li>\n"; |
|
510 |
echo '<div class="draft-title"><a href="' . esc_url( $url ) . '" title="' . esc_attr( sprintf( __( 'Edit “%s”' ), $title ) ) . '">' . esc_html( $title ) . '</a>'; |
|
511 |
echo '<time datetime="' . get_the_time( 'c', $draft ) . '">' . get_the_time( get_option( 'date_format' ), $draft ) . '</time></div>'; |
|
512 |
if ( $the_content = wp_trim_words( $draft->post_content, 10 ) ) { |
|
513 |
echo '<p>' . $the_content . '</p>'; |
|
514 |
} |
|
515 |
echo "</li>\n"; |
|
516 |
} |
|
517 |
echo "</ul>\n</div>"; |
0
|
518 |
} |
|
519 |
|
|
520 |
function _wp_dashboard_recent_comments_row( &$comment, $show_date = true ) { |
|
521 |
$GLOBALS['comment'] =& $comment; |
|
522 |
|
5
|
523 |
$comment_post_title = _draft_or_post_title( $comment->comment_post_ID ); |
|
524 |
|
|
525 |
if ( current_user_can( 'edit_post', $comment->comment_post_ID ) ) { |
|
526 |
$comment_post_url = get_edit_post_link( $comment->comment_post_ID ); |
|
527 |
$comment_post_link = "<a href='$comment_post_url'>$comment_post_title</a>"; |
|
528 |
} else { |
|
529 |
$comment_post_link = $comment_post_title; |
|
530 |
} |
|
531 |
|
0
|
532 |
$comment_link = '<a class="comment-link" href="' . esc_url(get_comment_link()) . '">#</a>'; |
|
533 |
|
|
534 |
$actions_string = ''; |
|
535 |
if ( current_user_can( 'edit_comment', $comment->comment_ID ) ) { |
5
|
536 |
// Pre-order it: Approve | Reply | Edit | Spam | Trash. |
0
|
537 |
$actions = array( |
|
538 |
'approve' => '', 'unapprove' => '', |
|
539 |
'reply' => '', |
|
540 |
'edit' => '', |
|
541 |
'spam' => '', |
|
542 |
'trash' => '', 'delete' => '' |
|
543 |
); |
|
544 |
|
|
545 |
$del_nonce = esc_html( '_wpnonce=' . wp_create_nonce( "delete-comment_$comment->comment_ID" ) ); |
|
546 |
$approve_nonce = esc_html( '_wpnonce=' . wp_create_nonce( "approve-comment_$comment->comment_ID" ) ); |
|
547 |
|
|
548 |
$approve_url = esc_url( "comment.php?action=approvecomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$approve_nonce" ); |
|
549 |
$unapprove_url = esc_url( "comment.php?action=unapprovecomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$approve_nonce" ); |
|
550 |
$spam_url = esc_url( "comment.php?action=spamcomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$del_nonce" ); |
|
551 |
$trash_url = esc_url( "comment.php?action=trashcomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$del_nonce" ); |
|
552 |
$delete_url = esc_url( "comment.php?action=deletecomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$del_nonce" ); |
|
553 |
|
|
554 |
$actions['approve'] = "<a href='$approve_url' data-wp-lists='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=approved' class='vim-a' title='" . esc_attr__( 'Approve this comment' ) . "'>" . __( 'Approve' ) . '</a>'; |
|
555 |
$actions['unapprove'] = "<a href='$unapprove_url' data-wp-lists='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=unapproved' class='vim-u' title='" . esc_attr__( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>'; |
|
556 |
$actions['edit'] = "<a href='comment.php?action=editcomment&c={$comment->comment_ID}' title='" . esc_attr__('Edit comment') . "'>". __('Edit') . '</a>'; |
5
|
557 |
$actions['reply'] = '<a onclick="window.commentReply && commentReply.open(\''.$comment->comment_ID.'\',\''.$comment->comment_post_ID.'\');return false;" class="vim-r hide-if-no-js" title="'.esc_attr__('Reply to this comment').'" href="#">' . __('Reply') . '</a>'; |
0
|
558 |
$actions['spam'] = "<a href='$spam_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID::spam=1' class='vim-s vim-destructive' title='" . esc_attr__( 'Mark this comment as spam' ) . "'>" . /* translators: mark as spam link */ _x( 'Spam', 'verb' ) . '</a>'; |
|
559 |
if ( !EMPTY_TRASH_DAYS ) |
|
560 |
$actions['delete'] = "<a href='$delete_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID::trash=1' class='delete vim-d vim-destructive'>" . __('Delete Permanently') . '</a>'; |
|
561 |
else |
|
562 |
$actions['trash'] = "<a href='$trash_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID::trash=1' class='delete vim-d vim-destructive' title='" . esc_attr__( 'Move this comment to the trash' ) . "'>" . _x('Trash', 'verb') . '</a>'; |
|
563 |
|
5
|
564 |
/** |
|
565 |
* Filter the action links displayed for each comment in the 'Recent Comments' |
|
566 |
* dashboard widget. |
|
567 |
* |
|
568 |
* @since 2.6.0 |
|
569 |
* |
|
570 |
* @param array $actions An array of comment actions. Default actions include: |
|
571 |
* 'Approve', 'Unapprove', 'Edit', 'Reply', 'Spam', |
|
572 |
* 'Delete', and 'Trash'. |
|
573 |
* @param object $comment The comment object. |
|
574 |
*/ |
0
|
575 |
$actions = apply_filters( 'comment_row_actions', array_filter($actions), $comment ); |
|
576 |
|
|
577 |
$i = 0; |
|
578 |
foreach ( $actions as $action => $link ) { |
|
579 |
++$i; |
|
580 |
( ( ('approve' == $action || 'unapprove' == $action) && 2 === $i ) || 1 === $i ) ? $sep = '' : $sep = ' | '; |
|
581 |
|
|
582 |
// Reply and quickedit need a hide-if-no-js span |
|
583 |
if ( 'reply' == $action || 'quickedit' == $action ) |
|
584 |
$action .= ' hide-if-no-js'; |
|
585 |
|
|
586 |
$actions_string .= "<span class='$action'>$sep$link</span>"; |
|
587 |
} |
|
588 |
} |
|
589 |
|
|
590 |
?> |
|
591 |
|
|
592 |
<div id="comment-<?php echo $comment->comment_ID; ?>" <?php comment_class( array( 'comment-item', wp_get_comment_status($comment->comment_ID) ) ); ?>> |
|
593 |
|
|
594 |
<?php echo get_avatar( $comment, 50, 'mystery' ); ?> |
|
595 |
|
5
|
596 |
<?php if ( !$comment->comment_type || 'comment' == $comment->comment_type ) : ?> |
|
597 |
|
0
|
598 |
<div class="dashboard-comment-wrap"> |
|
599 |
<h4 class="comment-meta"> |
|
600 |
<?php printf( /* translators: 1: comment author, 2: post link, 3: notification if the comment is pending */__( 'From %1$s on %2$s%3$s' ), |
|
601 |
'<cite class="comment-author">' . get_comment_author_link() . '</cite>', $comment_post_link.' '.$comment_link, ' <span class="approve">' . __( '[Pending]' ) . '</span>' ); ?> |
|
602 |
</h4> |
|
603 |
|
|
604 |
<?php |
|
605 |
else : |
5
|
606 |
switch ( $comment->comment_type ) { |
|
607 |
case 'pingback' : |
|
608 |
$type = __( 'Pingback' ); |
|
609 |
break; |
|
610 |
case 'trackback' : |
|
611 |
$type = __( 'Trackback' ); |
|
612 |
break; |
|
613 |
default : |
|
614 |
$type = ucwords( $comment->comment_type ); |
|
615 |
} |
0
|
616 |
$type = esc_html( $type ); |
|
617 |
?> |
|
618 |
<div class="dashboard-comment-wrap"> |
|
619 |
<?php /* translators: %1$s is type of comment, %2$s is link to the post */ ?> |
|
620 |
<h4 class="comment-meta"><?php printf( _x( '%1$s on %2$s', 'dashboard' ), "<strong>$type</strong>", $comment_post_link." ".$comment_link ); ?></h4> |
|
621 |
<p class="comment-author"><?php comment_author_link(); ?></p> |
|
622 |
|
|
623 |
<?php endif; // comment_type ?> |
|
624 |
<blockquote><p><?php comment_excerpt(); ?></p></blockquote> |
|
625 |
<p class="row-actions"><?php echo $actions_string; ?></p> |
|
626 |
</div> |
|
627 |
</div> |
|
628 |
<?php |
|
629 |
} |
|
630 |
|
|
631 |
/** |
5
|
632 |
* Callback function for Activity widget. |
0
|
633 |
* |
5
|
634 |
* @since 3.8.0 |
0
|
635 |
*/ |
5
|
636 |
function wp_dashboard_site_activity() { |
|
637 |
|
|
638 |
echo '<div id="activity-widget">'; |
0
|
639 |
|
5
|
640 |
$future_posts = wp_dashboard_recent_posts( array( |
|
641 |
'max' => 5, |
|
642 |
'status' => 'future', |
|
643 |
'order' => 'ASC', |
|
644 |
'title' => __( 'Publishing Soon' ), |
|
645 |
'id' => 'future-posts', |
|
646 |
) ); |
|
647 |
$recent_posts = wp_dashboard_recent_posts( array( |
|
648 |
'max' => 5, |
|
649 |
'status' => 'publish', |
|
650 |
'order' => 'DESC', |
|
651 |
'title' => __( 'Recently Published' ), |
|
652 |
'id' => 'published-posts', |
|
653 |
) ); |
0
|
654 |
|
5
|
655 |
$recent_comments = wp_dashboard_recent_comments(); |
|
656 |
|
|
657 |
if ( !$future_posts && !$recent_posts && !$recent_comments ) { |
|
658 |
echo '<div class="no-activity">'; |
|
659 |
echo '<p class="smiley"></p>'; |
|
660 |
echo '<p>' . __( 'No activity yet!' ) . '</p>'; |
|
661 |
echo '</div>'; |
0
|
662 |
} |
|
663 |
|
5
|
664 |
echo '</div>'; |
0
|
665 |
} |
|
666 |
|
|
667 |
/** |
5
|
668 |
* Generates Publishing Soon and Recently Published sections. |
|
669 |
* |
|
670 |
* @since 3.8.0 |
|
671 |
* |
|
672 |
* @param array $args { |
|
673 |
* An array of query and display arguments. |
0
|
674 |
* |
5
|
675 |
* @type int $max Number of posts to display. |
|
676 |
* @type string $status Post status. |
|
677 |
* @type string $order Designates ascending ('ASC') or descending ('DESC') order. |
|
678 |
* @type string $title Section title. |
|
679 |
* @type string $id The container id. |
|
680 |
* } |
|
681 |
* @return bool False if no posts were found. True otherwise. |
0
|
682 |
*/ |
5
|
683 |
function wp_dashboard_recent_posts( $args ) { |
|
684 |
$query_args = array( |
|
685 |
'post_type' => 'post', |
|
686 |
'post_status' => $args['status'], |
|
687 |
'orderby' => 'date', |
|
688 |
'order' => $args['order'], |
|
689 |
'posts_per_page' => intval( $args['max'] ), |
|
690 |
'no_found_rows' => true, |
|
691 |
'cache_results' => false, |
|
692 |
'perm' => ( 'future' === $args['status'] ) ? 'editable' : 'readable', |
|
693 |
); |
|
694 |
|
|
695 |
/** |
|
696 |
* Filter the query arguments used for the Recent Posts widget. |
|
697 |
* |
|
698 |
* @since 4.2.0 |
|
699 |
* |
|
700 |
* @param array $query_args The arguments passed to WP_Query to produce the list of posts. |
|
701 |
*/ |
|
702 |
$query_args = apply_filters( 'dashboard_recent_posts_query_args', $query_args ); |
|
703 |
$posts = new WP_Query( $query_args ); |
0
|
704 |
|
5
|
705 |
if ( $posts->have_posts() ) { |
|
706 |
|
|
707 |
echo '<div id="' . $args['id'] . '" class="activity-block">'; |
|
708 |
|
|
709 |
echo '<h4>' . $args['title'] . '</h4>'; |
|
710 |
|
|
711 |
echo '<ul>'; |
|
712 |
|
|
713 |
$today = date( 'Y-m-d', current_time( 'timestamp' ) ); |
|
714 |
$tomorrow = date( 'Y-m-d', strtotime( '+1 day', current_time( 'timestamp' ) ) ); |
|
715 |
|
|
716 |
while ( $posts->have_posts() ) { |
|
717 |
$posts->the_post(); |
|
718 |
|
|
719 |
$time = get_the_time( 'U' ); |
|
720 |
if ( date( 'Y-m-d', $time ) == $today ) { |
|
721 |
$relative = __( 'Today' ); |
|
722 |
} elseif ( date( 'Y-m-d', $time ) == $tomorrow ) { |
|
723 |
$relative = __( 'Tomorrow' ); |
|
724 |
} else { |
|
725 |
/* translators: date and time format for recent posts on the dashboard, see http://php.net/date */ |
|
726 |
$relative = date_i18n( __( 'M jS' ), $time ); |
|
727 |
} |
|
728 |
|
|
729 |
// Use the post edit link for those who can edit, the permalink otherwise. |
|
730 |
$recent_post_link = current_user_can( 'edit_post', get_the_ID() ) ? get_edit_post_link() : get_permalink(); |
|
731 |
|
|
732 |
/* translators: 1: relative date, 2: time, 3: post edit link or permalink, 4: post title */ |
|
733 |
$format = __( '<span>%1$s, %2$s</span> <a href="%3$s">%4$s</a>' ); |
|
734 |
printf( "<li>$format</li>", $relative, get_the_time(), $recent_post_link, _draft_or_post_title() ); |
0
|
735 |
} |
|
736 |
|
5
|
737 |
echo '</ul>'; |
|
738 |
echo '</div>'; |
|
739 |
|
|
740 |
} else { |
|
741 |
return false; |
0
|
742 |
} |
|
743 |
|
5
|
744 |
wp_reset_postdata(); |
0
|
745 |
|
5
|
746 |
return true; |
0
|
747 |
} |
|
748 |
|
|
749 |
/** |
5
|
750 |
* Show Comments section. |
|
751 |
* |
|
752 |
* @since 3.8.0 |
|
753 |
* |
|
754 |
* @param int $total_items Optional. Number of comments to query. Default 5. |
|
755 |
* @return bool False if no comments were found. True otherwise. |
|
756 |
*/ |
|
757 |
function wp_dashboard_recent_comments( $total_items = 5 ) { |
|
758 |
// Select all comment types and filter out spam later for better query performance. |
|
759 |
$comments = array(); |
|
760 |
|
|
761 |
$comments_query = array( |
|
762 |
'number' => $total_items * 5, |
|
763 |
'offset' => 0 |
|
764 |
); |
|
765 |
if ( ! current_user_can( 'edit_posts' ) ) |
|
766 |
$comments_query['status'] = 'approve'; |
|
767 |
|
|
768 |
while ( count( $comments ) < $total_items && $possible = get_comments( $comments_query ) ) { |
|
769 |
foreach ( $possible as $comment ) { |
|
770 |
if ( ! current_user_can( 'read_post', $comment->comment_post_ID ) ) |
|
771 |
continue; |
|
772 |
$comments[] = $comment; |
|
773 |
if ( count( $comments ) == $total_items ) |
|
774 |
break 2; |
|
775 |
} |
|
776 |
$comments_query['offset'] += $comments_query['number']; |
|
777 |
$comments_query['number'] = $total_items * 10; |
|
778 |
} |
|
779 |
|
|
780 |
if ( $comments ) { |
|
781 |
echo '<div id="latest-comments" class="activity-block">'; |
|
782 |
echo '<h4>' . __( 'Comments' ) . '</h4>'; |
|
783 |
|
|
784 |
echo '<div id="the-comment-list" data-wp-lists="list:comment">'; |
|
785 |
foreach ( $comments as $comment ) |
|
786 |
_wp_dashboard_recent_comments_row( $comment ); |
|
787 |
echo '</div>'; |
|
788 |
|
|
789 |
if ( current_user_can('edit_posts') ) |
|
790 |
_get_list_table('WP_Comments_List_Table')->views(); |
|
791 |
|
|
792 |
wp_comment_reply( -1, false, 'dashboard', false ); |
|
793 |
wp_comment_trashnotice(); |
|
794 |
|
|
795 |
echo '</div>'; |
|
796 |
} else { |
|
797 |
return false; |
|
798 |
} |
|
799 |
return true; |
|
800 |
} |
|
801 |
|
|
802 |
/** |
|
803 |
* Display generic dashboard RSS widget feed. |
0
|
804 |
* |
|
805 |
* @since 2.5.0 |
|
806 |
* |
|
807 |
* @param string $widget_id |
|
808 |
*/ |
|
809 |
function wp_dashboard_rss_output( $widget_id ) { |
|
810 |
$widgets = get_option( 'dashboard_widget_options' ); |
|
811 |
echo '<div class="rss-widget">'; |
5
|
812 |
wp_widget_rss_output( $widgets[ $widget_id ] ); |
0
|
813 |
echo "</div>"; |
|
814 |
} |
|
815 |
|
|
816 |
/** |
|
817 |
* Checks to see if all of the feed url in $check_urls are cached. |
|
818 |
* |
|
819 |
* If $check_urls is empty, look for the rss feed url found in the dashboard |
|
820 |
* widget options of $widget_id. If cached, call $callback, a function that |
|
821 |
* echoes out output for this widget. If not cache, echo a "Loading..." stub |
|
822 |
* which is later replaced by AJAX call (see top of /wp-admin/index.php) |
|
823 |
* |
|
824 |
* @since 2.5.0 |
|
825 |
* |
|
826 |
* @param string $widget_id |
|
827 |
* @param callback $callback |
|
828 |
* @param array $check_urls RSS feeds |
|
829 |
* @return bool False on failure. True on success. |
|
830 |
*/ |
|
831 |
function wp_dashboard_cached_rss_widget( $widget_id, $callback, $check_urls = array() ) { |
|
832 |
$loading = '<p class="widget-loading hide-if-no-js">' . __( 'Loading…' ) . '</p><p class="hide-if-js">' . __( 'This widget requires JavaScript.' ) . '</p>'; |
|
833 |
$doing_ajax = ( defined('DOING_AJAX') && DOING_AJAX ); |
|
834 |
|
|
835 |
if ( empty($check_urls) ) { |
|
836 |
$widgets = get_option( 'dashboard_widget_options' ); |
|
837 |
if ( empty($widgets[$widget_id]['url']) && ! $doing_ajax ) { |
|
838 |
echo $loading; |
|
839 |
return false; |
|
840 |
} |
|
841 |
$check_urls = array( $widgets[$widget_id]['url'] ); |
|
842 |
} |
|
843 |
|
|
844 |
$cache_key = 'dash_' . md5( $widget_id ); |
|
845 |
if ( false !== ( $output = get_transient( $cache_key ) ) ) { |
|
846 |
echo $output; |
|
847 |
return true; |
|
848 |
} |
|
849 |
|
|
850 |
if ( ! $doing_ajax ) { |
|
851 |
echo $loading; |
|
852 |
return false; |
|
853 |
} |
|
854 |
|
|
855 |
if ( $callback && is_callable( $callback ) ) { |
5
|
856 |
$args = array_slice( func_get_args(), 3 ); |
|
857 |
array_unshift( $args, $widget_id, $check_urls ); |
0
|
858 |
ob_start(); |
|
859 |
call_user_func_array( $callback, $args ); |
|
860 |
set_transient( $cache_key, ob_get_flush(), 12 * HOUR_IN_SECONDS ); // Default lifetime in cache of 12 hours (same as the feeds) |
|
861 |
} |
|
862 |
|
|
863 |
return true; |
|
864 |
} |
|
865 |
|
|
866 |
/* Dashboard Widgets Controls */ |
|
867 |
|
|
868 |
// Calls widget_control callback |
|
869 |
/** |
|
870 |
* Calls widget control callback. |
|
871 |
* |
|
872 |
* @since 2.5.0 |
|
873 |
* |
|
874 |
* @param int $widget_control_id Registered Widget ID. |
|
875 |
*/ |
|
876 |
function wp_dashboard_trigger_widget_control( $widget_control_id = false ) { |
|
877 |
global $wp_dashboard_control_callbacks; |
|
878 |
|
|
879 |
if ( is_scalar($widget_control_id) && $widget_control_id && isset($wp_dashboard_control_callbacks[$widget_control_id]) && is_callable($wp_dashboard_control_callbacks[$widget_control_id]) ) { |
|
880 |
call_user_func( $wp_dashboard_control_callbacks[$widget_control_id], '', array( 'id' => $widget_control_id, 'callback' => $wp_dashboard_control_callbacks[$widget_control_id] ) ); |
|
881 |
} |
|
882 |
} |
|
883 |
|
|
884 |
/** |
|
885 |
* The RSS dashboard widget control. |
|
886 |
* |
|
887 |
* Sets up $args to be used as input to wp_widget_rss_form(). Handles POST data |
|
888 |
* from RSS-type widgets. |
|
889 |
* |
|
890 |
* @since 2.5.0 |
|
891 |
* |
|
892 |
* @param string $widget_id |
|
893 |
* @param array $form_inputs |
|
894 |
*/ |
|
895 |
function wp_dashboard_rss_control( $widget_id, $form_inputs = array() ) { |
|
896 |
if ( !$widget_options = get_option( 'dashboard_widget_options' ) ) |
|
897 |
$widget_options = array(); |
|
898 |
|
|
899 |
if ( !isset($widget_options[$widget_id]) ) |
|
900 |
$widget_options[$widget_id] = array(); |
|
901 |
|
|
902 |
$number = 1; // Hack to use wp_widget_rss_form() |
|
903 |
$widget_options[$widget_id]['number'] = $number; |
|
904 |
|
|
905 |
if ( 'POST' == $_SERVER['REQUEST_METHOD'] && isset($_POST['widget-rss'][$number]) ) { |
|
906 |
$_POST['widget-rss'][$number] = wp_unslash( $_POST['widget-rss'][$number] ); |
|
907 |
$widget_options[$widget_id] = wp_widget_rss_process( $_POST['widget-rss'][$number] ); |
|
908 |
$widget_options[$widget_id]['number'] = $number; |
5
|
909 |
|
|
910 |
// Title is optional. If black, fill it if possible. |
0
|
911 |
if ( !$widget_options[$widget_id]['title'] && isset($_POST['widget-rss'][$number]['title']) ) { |
|
912 |
$rss = fetch_feed($widget_options[$widget_id]['url']); |
|
913 |
if ( is_wp_error($rss) ) { |
|
914 |
$widget_options[$widget_id]['title'] = htmlentities(__('Unknown Feed')); |
|
915 |
} else { |
|
916 |
$widget_options[$widget_id]['title'] = htmlentities(strip_tags($rss->get_title())); |
|
917 |
$rss->__destruct(); |
|
918 |
unset($rss); |
|
919 |
} |
|
920 |
} |
|
921 |
update_option( 'dashboard_widget_options', $widget_options ); |
|
922 |
$cache_key = 'dash_' . md5( $widget_id ); |
|
923 |
delete_transient( $cache_key ); |
|
924 |
} |
|
925 |
|
|
926 |
wp_widget_rss_form( $widget_options[$widget_id], $form_inputs ); |
|
927 |
} |
|
928 |
|
|
929 |
/** |
5
|
930 |
* WordPress News dashboard widget. |
|
931 |
* |
|
932 |
* @since 2.7.0 |
|
933 |
*/ |
|
934 |
function wp_dashboard_primary() { |
|
935 |
$feeds = array( |
|
936 |
'news' => array( |
|
937 |
|
|
938 |
/** |
|
939 |
* Filter the primary link URL for the 'WordPress News' dashboard widget. |
|
940 |
* |
|
941 |
* @since 2.5.0 |
|
942 |
* |
|
943 |
* @param string $link The widget's primary link URL. |
|
944 |
*/ |
|
945 |
'link' => apply_filters( 'dashboard_primary_link', __( 'http://wordpress.org/news/' ) ), |
|
946 |
|
|
947 |
/** |
|
948 |
* Filter the primary feed URL for the 'WordPress News' dashboard widget. |
|
949 |
* |
|
950 |
* @since 2.3.0 |
|
951 |
* |
|
952 |
* @param string $url The widget's primary feed URL. |
|
953 |
*/ |
|
954 |
'url' => apply_filters( 'dashboard_primary_feed', __( 'http://wordpress.org/news/feed/' ) ), |
|
955 |
|
|
956 |
/** |
|
957 |
* Filter the primary link title for the 'WordPress News' dashboard widget. |
|
958 |
* |
|
959 |
* @since 2.3.0 |
|
960 |
* |
|
961 |
* @param string $title Title attribute for the widget's primary link. |
|
962 |
*/ |
|
963 |
'title' => apply_filters( 'dashboard_primary_title', __( 'WordPress Blog' ) ), |
|
964 |
'items' => 1, |
|
965 |
'show_summary' => 1, |
|
966 |
'show_author' => 0, |
|
967 |
'show_date' => 1, |
|
968 |
), |
|
969 |
'planet' => array( |
|
970 |
|
|
971 |
/** |
|
972 |
* Filter the secondary link URL for the 'WordPress News' dashboard widget. |
|
973 |
* |
|
974 |
* @since 2.3.0 |
|
975 |
* |
|
976 |
* @param string $link The widget's secondary link URL. |
|
977 |
*/ |
|
978 |
'link' => apply_filters( 'dashboard_secondary_link', __( 'https://planet.wordpress.org/' ) ), |
|
979 |
|
|
980 |
/** |
|
981 |
* Filter the secondary feed URL for the 'WordPress News' dashboard widget. |
|
982 |
* |
|
983 |
* @since 2.3.0 |
|
984 |
* |
|
985 |
* @param string $url The widget's secondary feed URL. |
|
986 |
*/ |
|
987 |
'url' => apply_filters( 'dashboard_secondary_feed', __( 'https://planet.wordpress.org/feed/' ) ), |
|
988 |
|
|
989 |
/** |
|
990 |
* Filter the secondary link title for the 'WordPress News' dashboard widget. |
|
991 |
* |
|
992 |
* @since 2.3.0 |
|
993 |
* |
|
994 |
* @param string $title Title attribute for the widget's secondary link. |
|
995 |
*/ |
|
996 |
'title' => apply_filters( 'dashboard_secondary_title', __( 'Other WordPress News' ) ), |
|
997 |
'items' => 3, |
|
998 |
'show_summary' => 0, |
|
999 |
'show_author' => 0, |
|
1000 |
'show_date' => 0, |
|
1001 |
) |
|
1002 |
); |
|
1003 |
|
|
1004 |
if ( ( ! is_multisite() && is_blog_admin() && current_user_can( 'install_plugins' ) ) || ( is_network_admin() && current_user_can( 'manage_network_plugins' ) && current_user_can( 'install_plugins' ) ) ) { |
|
1005 |
$feeds['plugins'] = array( |
|
1006 |
'link' => '', |
|
1007 |
'url' => array( |
|
1008 |
'popular' => 'http://wordpress.org/plugins/rss/browse/popular/', |
|
1009 |
), |
|
1010 |
'title' => '', |
|
1011 |
'items' => 1, |
|
1012 |
'show_summary' => 0, |
|
1013 |
'show_author' => 0, |
|
1014 |
'show_date' => 0, |
|
1015 |
); |
|
1016 |
} |
|
1017 |
|
|
1018 |
wp_dashboard_cached_rss_widget( 'dashboard_primary', 'wp_dashboard_primary_output', $feeds ); |
|
1019 |
} |
|
1020 |
|
|
1021 |
/** |
|
1022 |
* Display the WordPress news feeds. |
|
1023 |
* |
|
1024 |
* @since 3.8.0 |
|
1025 |
* |
|
1026 |
* @param string $widget_id Widget ID. |
|
1027 |
* @param array $feeds Array of RSS feeds. |
|
1028 |
*/ |
|
1029 |
function wp_dashboard_primary_output( $widget_id, $feeds ) { |
|
1030 |
foreach( $feeds as $type => $args ) { |
|
1031 |
$args['type'] = $type; |
|
1032 |
echo '<div class="rss-widget">'; |
|
1033 |
if ( $type === 'plugins' ) { |
|
1034 |
wp_dashboard_plugins_output( $args['url'], $args ); |
|
1035 |
} else { |
|
1036 |
wp_widget_rss_output( $args['url'], $args ); |
|
1037 |
} |
|
1038 |
echo "</div>"; |
|
1039 |
} |
|
1040 |
} |
|
1041 |
|
|
1042 |
/** |
|
1043 |
* Display plugins text for the WordPress news widget. |
|
1044 |
* |
|
1045 |
* @since 2.5.0 |
|
1046 |
*/ |
|
1047 |
function wp_dashboard_plugins_output( $rss, $args = array() ) { |
|
1048 |
// Plugin feeds plus link to install them |
|
1049 |
$popular = fetch_feed( $args['url']['popular'] ); |
|
1050 |
|
|
1051 |
if ( false === $plugin_slugs = get_transient( 'plugin_slugs' ) ) { |
|
1052 |
$plugin_slugs = array_keys( get_plugins() ); |
|
1053 |
set_transient( 'plugin_slugs', $plugin_slugs, DAY_IN_SECONDS ); |
|
1054 |
} |
|
1055 |
|
|
1056 |
echo '<ul>'; |
|
1057 |
|
|
1058 |
foreach ( array( $popular ) as $feed ) { |
|
1059 |
if ( is_wp_error( $feed ) || ! $feed->get_item_quantity() ) |
|
1060 |
continue; |
|
1061 |
|
|
1062 |
$items = $feed->get_items(0, 5); |
|
1063 |
|
|
1064 |
// Pick a random, non-installed plugin |
|
1065 |
while ( true ) { |
|
1066 |
// Abort this foreach loop iteration if there's no plugins left of this type |
|
1067 |
if ( 0 == count($items) ) |
|
1068 |
continue 2; |
|
1069 |
|
|
1070 |
$item_key = array_rand($items); |
|
1071 |
$item = $items[$item_key]; |
|
1072 |
|
|
1073 |
list($link, $frag) = explode( '#', $item->get_link() ); |
|
1074 |
|
|
1075 |
$link = esc_url($link); |
|
1076 |
if ( preg_match( '|/([^/]+?)/?$|', $link, $matches ) ) |
|
1077 |
$slug = $matches[1]; |
|
1078 |
else { |
|
1079 |
unset( $items[$item_key] ); |
|
1080 |
continue; |
|
1081 |
} |
|
1082 |
|
|
1083 |
// Is this random plugin's slug already installed? If so, try again. |
|
1084 |
reset( $plugin_slugs ); |
|
1085 |
foreach ( $plugin_slugs as $plugin_slug ) { |
|
1086 |
if ( $slug == substr( $plugin_slug, 0, strlen( $slug ) ) ) { |
|
1087 |
unset( $items[$item_key] ); |
|
1088 |
continue 2; |
|
1089 |
} |
|
1090 |
} |
|
1091 |
|
|
1092 |
// If we get to this point, then the random plugin isn't installed and we can stop the while(). |
|
1093 |
break; |
|
1094 |
} |
|
1095 |
|
|
1096 |
// Eliminate some common badly formed plugin descriptions |
|
1097 |
while ( ( null !== $item_key = array_rand($items) ) && false !== strpos( $items[$item_key]->get_description(), 'Plugin Name:' ) ) |
|
1098 |
unset($items[$item_key]); |
|
1099 |
|
|
1100 |
if ( !isset($items[$item_key]) ) |
|
1101 |
continue; |
|
1102 |
|
|
1103 |
$title = esc_html( $item->get_title() ); |
|
1104 |
|
|
1105 |
$ilink = wp_nonce_url('plugin-install.php?tab=plugin-information&plugin=' . $slug, 'install-plugin_' . $slug) . '&TB_iframe=true&width=600&height=800'; |
|
1106 |
echo "<li class='dashboard-news-plugin'><span>" . __( 'Popular Plugin' ) . ":</span> <a href='$link' class='dashboard-news-plugin-link'>$title</a> <span>(<a href='$ilink' class='thickbox' title='$title'>" . __( 'Install' ) . "</a>)</span></li>"; |
|
1107 |
|
|
1108 |
$feed->__destruct(); |
|
1109 |
unset( $feed ); |
|
1110 |
} |
|
1111 |
|
|
1112 |
echo '</ul>'; |
|
1113 |
} |
|
1114 |
|
|
1115 |
/** |
0
|
1116 |
* Display file upload quota on dashboard. |
|
1117 |
* |
|
1118 |
* Runs on the activity_box_end hook in wp_dashboard_right_now(). |
|
1119 |
* |
|
1120 |
* @since 3.0.0 |
|
1121 |
* |
5
|
1122 |
* @return bool|null True if not multisite, user can't upload files, or the space check option is disabled. |
0
|
1123 |
*/ |
|
1124 |
function wp_dashboard_quota() { |
5
|
1125 |
if ( !is_multisite() || !current_user_can( 'upload_files' ) || get_site_option( 'upload_space_check_disabled' ) ) |
0
|
1126 |
return true; |
|
1127 |
|
|
1128 |
$quota = get_space_allowed(); |
|
1129 |
$used = get_space_used(); |
|
1130 |
|
|
1131 |
if ( $used > $quota ) |
|
1132 |
$percentused = '100'; |
|
1133 |
else |
|
1134 |
$percentused = ( $used / $quota ) * 100; |
5
|
1135 |
$used_class = ( $percentused >= 70 ) ? ' warning' : ''; |
0
|
1136 |
$used = round( $used, 2 ); |
|
1137 |
$percentused = number_format( $percentused ); |
|
1138 |
|
|
1139 |
?> |
5
|
1140 |
<h4 class="mu-storage"><?php _e( 'Storage Space' ); ?></h4> |
|
1141 |
<div class="mu-storage"> |
|
1142 |
<ul> |
|
1143 |
<li class="storage-count"> |
|
1144 |
<?php $text = sprintf( |
|
1145 |
/* translators: number of megabytes */ |
|
1146 |
__( '%s MB Space Allowed' ), |
|
1147 |
number_format_i18n( $quota ) |
|
1148 |
); |
|
1149 |
printf( |
|
1150 |
'<a href="%1$s" title="%2$s">%3$s</a>', |
|
1151 |
esc_url( admin_url( 'upload.php' ) ), |
|
1152 |
__( 'Manage Uploads' ), |
|
1153 |
$text |
|
1154 |
); ?> |
|
1155 |
</li><li class="storage-count <?php echo $used_class; ?>"> |
|
1156 |
<?php $text = sprintf( |
|
1157 |
/* translators: 1: number of megabytes, 2: percentage */ |
|
1158 |
__( '%1$s MB (%2$s%%) Space Used' ), |
|
1159 |
number_format_i18n( $used, 2 ), |
|
1160 |
$percentused |
|
1161 |
); |
|
1162 |
printf( |
|
1163 |
'<a href="%1$s" title="%2$s" class="musublink">%3$s</a>', |
|
1164 |
esc_url( admin_url( 'upload.php' ) ), |
|
1165 |
__( 'Manage Uploads' ), |
|
1166 |
$text |
|
1167 |
); ?> |
|
1168 |
</li> |
|
1169 |
</ul> |
0
|
1170 |
</div> |
|
1171 |
<?php |
|
1172 |
} |
|
1173 |
add_action( 'activity_box_end', 'wp_dashboard_quota' ); |
|
1174 |
|
|
1175 |
// Display Browser Nag Meta Box |
|
1176 |
function wp_dashboard_browser_nag() { |
|
1177 |
$notice = ''; |
|
1178 |
$response = wp_check_browser_version(); |
|
1179 |
|
|
1180 |
if ( $response ) { |
|
1181 |
if ( $response['insecure'] ) { |
|
1182 |
$msg = sprintf( __( "It looks like you're using an insecure version of <a href='%s'>%s</a>. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser." ), esc_attr( $response['update_url'] ), esc_html( $response['name'] ) ); |
|
1183 |
} else { |
|
1184 |
$msg = sprintf( __( "It looks like you're using an old version of <a href='%s'>%s</a>. For the best WordPress experience, please update your browser." ), esc_attr( $response['update_url'] ), esc_html( $response['name'] ) ); |
|
1185 |
} |
|
1186 |
|
|
1187 |
$browser_nag_class = ''; |
|
1188 |
if ( !empty( $response['img_src'] ) ) { |
|
1189 |
$img_src = ( is_ssl() && ! empty( $response['img_src_ssl'] ) )? $response['img_src_ssl'] : $response['img_src']; |
|
1190 |
|
|
1191 |
$notice .= '<div class="alignright browser-icon"><a href="' . esc_attr($response['update_url']) . '"><img src="' . esc_attr( $img_src ) . '" alt="" /></a></div>'; |
|
1192 |
$browser_nag_class = ' has-browser-icon'; |
|
1193 |
} |
|
1194 |
$notice .= "<p class='browser-update-nag{$browser_nag_class}'>{$msg}</p>"; |
|
1195 |
|
|
1196 |
$browsehappy = 'http://browsehappy.com/'; |
|
1197 |
$locale = get_locale(); |
|
1198 |
if ( 'en_US' !== $locale ) |
|
1199 |
$browsehappy = add_query_arg( 'locale', $locale, $browsehappy ); |
|
1200 |
|
|
1201 |
$notice .= '<p>' . sprintf( __( '<a href="%1$s" class="update-browser-link">Update %2$s</a> or learn how to <a href="%3$s" class="browse-happy-link">browse happy</a>' ), esc_attr( $response['update_url'] ), esc_html( $response['name'] ), esc_url( $browsehappy ) ) . '</p>'; |
|
1202 |
$notice .= '<p class="hide-if-no-js"><a href="" class="dismiss">' . __( 'Dismiss' ) . '</a></p>'; |
|
1203 |
$notice .= '<div class="clear"></div>'; |
|
1204 |
} |
|
1205 |
|
5
|
1206 |
/** |
|
1207 |
* Filter the notice output for the 'Browse Happy' nag meta box. |
|
1208 |
* |
|
1209 |
* @since 3.2.0 |
|
1210 |
* |
|
1211 |
* @param string $notice The notice content. |
|
1212 |
* @param array $response An array containing web browser information. |
|
1213 |
*/ |
0
|
1214 |
echo apply_filters( 'browse-happy-notice', $notice, $response ); |
|
1215 |
} |
|
1216 |
|
|
1217 |
function dashboard_browser_nag_class( $classes ) { |
|
1218 |
$response = wp_check_browser_version(); |
|
1219 |
|
|
1220 |
if ( $response && $response['insecure'] ) |
|
1221 |
$classes[] = 'browser-insecure'; |
|
1222 |
|
|
1223 |
return $classes; |
|
1224 |
} |
|
1225 |
|
|
1226 |
/** |
|
1227 |
* Check if the user needs a browser update |
|
1228 |
* |
|
1229 |
* @since 3.2.0 |
|
1230 |
* |
|
1231 |
* @return array|bool False on failure, array of browser data on success. |
|
1232 |
*/ |
|
1233 |
function wp_check_browser_version() { |
|
1234 |
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) ) |
|
1235 |
return false; |
|
1236 |
|
|
1237 |
$key = md5( $_SERVER['HTTP_USER_AGENT'] ); |
|
1238 |
|
|
1239 |
if ( false === ($response = get_site_transient('browser_' . $key) ) ) { |
|
1240 |
global $wp_version; |
|
1241 |
|
|
1242 |
$options = array( |
|
1243 |
'body' => array( 'useragent' => $_SERVER['HTTP_USER_AGENT'] ), |
|
1244 |
'user-agent' => 'WordPress/' . $wp_version . '; ' . home_url() |
|
1245 |
); |
|
1246 |
|
|
1247 |
$response = wp_remote_post( 'http://api.wordpress.org/core/browse-happy/1.1/', $options ); |
|
1248 |
|
|
1249 |
if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) ) |
|
1250 |
return false; |
|
1251 |
|
|
1252 |
/** |
|
1253 |
* Response should be an array with: |
|
1254 |
* 'name' - string - A user friendly browser name |
|
1255 |
* 'version' - string - The most recent version of the browser |
|
1256 |
* 'current_version' - string - The version of the browser the user is using |
|
1257 |
* 'upgrade' - boolean - Whether the browser needs an upgrade |
|
1258 |
* 'insecure' - boolean - Whether the browser is deemed insecure |
|
1259 |
* 'upgrade_url' - string - The url to visit to upgrade |
|
1260 |
* 'img_src' - string - An image representing the browser |
|
1261 |
* 'img_src_ssl' - string - An image (over SSL) representing the browser |
|
1262 |
*/ |
|
1263 |
$response = json_decode( wp_remote_retrieve_body( $response ), true ); |
|
1264 |
|
|
1265 |
if ( ! is_array( $response ) ) |
|
1266 |
return false; |
|
1267 |
|
|
1268 |
set_site_transient( 'browser_' . $key, $response, WEEK_IN_SECONDS ); |
|
1269 |
} |
|
1270 |
|
|
1271 |
return $response; |
|
1272 |
} |
|
1273 |
|
|
1274 |
/** |
|
1275 |
* Empty function usable by plugins to output empty dashboard widget (to be populated later by JS). |
|
1276 |
*/ |
|
1277 |
function wp_dashboard_empty() {} |
|
1278 |
|
|
1279 |
/** |
|
1280 |
* Displays a welcome panel to introduce users to WordPress. |
|
1281 |
* |
|
1282 |
* @since 3.3.0 |
|
1283 |
*/ |
|
1284 |
function wp_welcome_panel() { |
|
1285 |
?> |
|
1286 |
<div class="welcome-panel-content"> |
|
1287 |
<h3><?php _e( 'Welcome to WordPress!' ); ?></h3> |
|
1288 |
<p class="about-description"><?php _e( 'We’ve assembled some links to get you started:' ); ?></p> |
|
1289 |
<div class="welcome-panel-column-container"> |
|
1290 |
<div class="welcome-panel-column"> |
5
|
1291 |
<?php if ( current_user_can( 'customize' ) ): ?> |
|
1292 |
<h4><?php _e( 'Get Started' ); ?></h4> |
|
1293 |
<a class="button button-primary button-hero load-customize hide-if-no-customize" href="<?php echo wp_customize_url(); ?>"><?php _e( 'Customize Your Site' ); ?></a> |
|
1294 |
<?php endif; ?> |
0
|
1295 |
<a class="button button-primary button-hero hide-if-customize" href="<?php echo admin_url( 'themes.php' ); ?>"><?php _e( 'Customize Your Site' ); ?></a> |
|
1296 |
<?php if ( current_user_can( 'install_themes' ) || ( current_user_can( 'switch_themes' ) && count( wp_get_themes( array( 'allowed' => true ) ) ) > 1 ) ) : ?> |
|
1297 |
<p class="hide-if-no-customize"><?php printf( __( 'or, <a href="%s">change your theme completely</a>' ), admin_url( 'themes.php' ) ); ?></p> |
|
1298 |
<?php endif; ?> |
|
1299 |
</div> |
|
1300 |
<div class="welcome-panel-column"> |
|
1301 |
<h4><?php _e( 'Next Steps' ); ?></h4> |
|
1302 |
<ul> |
|
1303 |
<?php if ( 'page' == get_option( 'show_on_front' ) && ! get_option( 'page_for_posts' ) ) : ?> |
|
1304 |
<li><?php printf( '<a href="%s" class="welcome-icon welcome-edit-page">' . __( 'Edit your front page' ) . '</a>', get_edit_post_link( get_option( 'page_on_front' ) ) ); ?></li> |
|
1305 |
<li><?php printf( '<a href="%s" class="welcome-icon welcome-add-page">' . __( 'Add additional pages' ) . '</a>', admin_url( 'post-new.php?post_type=page' ) ); ?></li> |
|
1306 |
<?php elseif ( 'page' == get_option( 'show_on_front' ) ) : ?> |
|
1307 |
<li><?php printf( '<a href="%s" class="welcome-icon welcome-edit-page">' . __( 'Edit your front page' ) . '</a>', get_edit_post_link( get_option( 'page_on_front' ) ) ); ?></li> |
|
1308 |
<li><?php printf( '<a href="%s" class="welcome-icon welcome-add-page">' . __( 'Add additional pages' ) . '</a>', admin_url( 'post-new.php?post_type=page' ) ); ?></li> |
|
1309 |
<li><?php printf( '<a href="%s" class="welcome-icon welcome-write-blog">' . __( 'Add a blog post' ) . '</a>', admin_url( 'post-new.php' ) ); ?></li> |
|
1310 |
<?php else : ?> |
|
1311 |
<li><?php printf( '<a href="%s" class="welcome-icon welcome-write-blog">' . __( 'Write your first blog post' ) . '</a>', admin_url( 'post-new.php' ) ); ?></li> |
|
1312 |
<li><?php printf( '<a href="%s" class="welcome-icon welcome-add-page">' . __( 'Add an About page' ) . '</a>', admin_url( 'post-new.php?post_type=page' ) ); ?></li> |
|
1313 |
<?php endif; ?> |
|
1314 |
<li><?php printf( '<a href="%s" class="welcome-icon welcome-view-site">' . __( 'View your site' ) . '</a>', home_url( '/' ) ); ?></li> |
|
1315 |
</ul> |
|
1316 |
</div> |
|
1317 |
<div class="welcome-panel-column welcome-panel-last"> |
|
1318 |
<h4><?php _e( 'More Actions' ); ?></h4> |
|
1319 |
<ul> |
5
|
1320 |
<?php if ( current_theme_supports( 'widgets' ) || current_theme_supports( 'menus' ) ) : ?> |
|
1321 |
<li><div class="welcome-icon welcome-widgets-menus"><?php |
|
1322 |
if ( current_theme_supports( 'widgets' ) && current_theme_supports( 'menus' ) ) { |
|
1323 |
printf( __( 'Manage <a href="%1$s">widgets</a> or <a href="%2$s">menus</a>' ), |
|
1324 |
admin_url( 'widgets.php' ), admin_url( 'nav-menus.php' ) ); |
|
1325 |
} elseif ( current_theme_supports( 'widgets' ) ) { |
|
1326 |
echo '<a href="' . admin_url( 'widgets.php' ) . '">' . __( 'Manage widgets' ) . '</a>'; |
|
1327 |
} else { |
|
1328 |
echo '<a href="' . admin_url( 'nav-menus.php' ) . '">' . __( 'Manage menus' ) . '</a>'; |
|
1329 |
} |
|
1330 |
?></div></li> |
|
1331 |
<?php endif; ?> |
|
1332 |
<?php if ( current_user_can( 'manage_options' ) ) : ?> |
0
|
1333 |
<li><?php printf( '<a href="%s" class="welcome-icon welcome-comments">' . __( 'Turn comments on or off' ) . '</a>', admin_url( 'options-discussion.php' ) ); ?></li> |
5
|
1334 |
<?php endif; ?> |
|
1335 |
<li><?php printf( '<a href="%s" class="welcome-icon welcome-learn-more">' . __( 'Learn more about getting started' ) . '</a>', __( 'https://codex.wordpress.org/First_Steps_With_WordPress' ) ); ?></li> |
0
|
1336 |
</ul> |
|
1337 |
</div> |
|
1338 |
</div> |
|
1339 |
</div> |
|
1340 |
<?php |
|
1341 |
} |