Forum Update - April 23rd

I just processed an update on the forums, please let me know if you run into any issues.

Two biggest features/changes are:

  1. Improved Bookmarks with Reminders
  2. Code Block Copying

Simply move your mouse over the code block and click the copy button in the top right corner. Here is a code block to test it on:

/*
 * These can't be directly globalized in version.php. When updating,
 * we're including version.php from another installation and don't want
 * these values to be overridden if already set.
 */
global $wp_version, $wp_db_version, $tinymce_version, $required_php_version, $required_mysql_version, $wp_local_package;
require ABSPATH . WPINC . '/version.php';

Code copied from $cp_version and WP-CLI - #5 by Simone

3 Likes

Testing the code block copy feature.

/*
 * These can't be directly globalized in version.php. When updating,
 * we're including version.php from another installation and don't want
 * these values to be overridden if already set.
 */
global $wp_version, $wp_db_version, $tinymce_version, $required_php_version, $required_mysql_version, $wp_local_package;
require ABSPATH . WPINC . '/version.php';

Noting that copying the code block only copies the inner content; you still have to add the usual backticks around the copied content.

3 Likes