Monday 25 June 2018

Jumpstart your Testing and Transition Plans with Gutenberg Ramp


Description Activating Gutenberg Ramp plugin adds a settings screen where you can enable Gutenberg selectively (for specific post types). For even greater control, you can specify Gutenberg loading behavior in code. Ramp works with both the plugin version of Gutenberg, and the core version, providing a seamless transition.
Visit Settings -> Writing to enable Gutenberg by post type. Screenshots here
To enable Gutenberg for specific post IDs and for a more granular level of control, developers can use the gutenberg_ramp_load_gutenberg() function as outlined below.
For Developers
Loading behaviour is controlled by the gutenberg_ramp_load_gutenberg() function, to be added in your theme functions.php. Calling this function without its single optional parameter causes Gutenberg to load on all post-edit screens. An optional associative array of criteria can be passed. The possible keys and values are:
load (Int): 0|1: never or always load Gutenberg
post_ids (Array of post_ids): loads Gutenberg for the specified post_ids
post_types (Array of post_types): loads Gutenberg for the specified post types.
Code Examples
Load Gutenberg for all posts:
if ( function_exists( ‘gutenberg_ramp_load_gutenberg’
Source: https://managewp.org/articles/17550/jumpstart-your-testing-and-transition-plans-with-gutenberg-ramp



source https://williechiu40.wordpress.com/2018/06/25/jumpstart-your-testing-and-transition-plans-with-gutenberg-ramp/

No comments:

Post a Comment