wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_dashboard_php_nag › WordPress Function
Since5.1.0
Deprecatedn/a
› wp_dashboard_php_nag ( No parameters )
Defined at: |
|
Codex: |
Displays the PHP update nag.
Related Functions: dashboard_php_nag_class, wp_dashboard_browser_nag, wp_dashboard_right_now, wp_dashboard, wp_dashboard_primary
Source
function wp_dashboard_php_nag() { $response = wp_check_php_version(); if ( ! $response ) { return; } if ( isset( $response['is_secure'] ) && ! $response['is_secure'] ) { $msg = sprintf( /* translators: %s: The server PHP version. */ __( 'Your site is running an insecure version of PHP (%s), which should be updated.' ), PHP_VERSION ); } else { $msg = sprintf( /* translators: %s: The server PHP version. */ __( 'Your site is running an outdated version of PHP (%s), which should be updated.' ), PHP_VERSION ); } ?> <p><?php echo $msg; ?></p> <h3><?php _e( 'What is PHP and how does it affect my site?' ); ?></h3> <p> <?php printf( /* translators: %s: The minimum recommended PHP version. */ __( 'PHP is the programming language used to build and maintain WordPress. Newer versions of PHP are created with increased performance in mind, so you may see a positive effect on your site’s performance. The minimum recommended version of PHP is %s.' ), $response ? $response['recommended_version'] : '' ); ?> </p> <p class="button-container"> <?php printf( '<a class="button button-primary" href="%1$s" target="_blank" rel="noopener">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>', esc_url( wp_get_update_php_url() ), __( 'Learn more about updating PHP' ), /* translators: Accessibility text. */ __( '(opens in a new tab)' ) ); ?> </p> <?php wp_update_php_annotation(); wp_direct_php_update_button(); }