WP_Locale::rtl_src_admin_notice()
Outputs an admin notice if the /build directory must be used for RTL.
Source
File: wp-includes/class-wp-locale.php
public function rtl_src_admin_notice() {
/* translators: %s: Name of the directory (build) */
echo '<div class="error"><p>' . sprintf( __( 'The %s directory of the source repository must be used for RTL.' ), '<code>build</code>' ) . '</p></div>';
}
Changelog
Version | Description |
---|---|
WP-3.8.0 | Introduced. |