X-Git-Url: https://git.danix.xyz/?p=danixland-site-plugin.git;a=blobdiff_plain;f=danixland-site-plugin.php;h=0245d552ecc5bf1ea3a81382c9e1f8fee86759a0;hp=4e8aa542bd5a6f9f7ddcab3bd249f331d206a41d;hb=0b37291cb093b12307582fe0a110732fb8917fb8;hpb=0fcdb4acb6fa54f765f6afc15cce0ed7adf71dd4 diff --git a/danixland-site-plugin.php b/danixland-site-plugin.php index 4e8aa54..0245d55 100644 --- a/danixland-site-plugin.php +++ b/danixland-site-plugin.php @@ -1,7 +1,7 @@ '; } add_shortcode("googlemaps", "danix_gmaps"); - + +/** + * Add Next Page / Page Break button + * inside the WordPress Visual Editor + * + * @link https://shellcreeper.com/?p=889 + * @since 0.9.7 + * + */ +function danix_next_page_button( $buttons, $id ) { + + /* only add this for content editor */ + if ( 'content' != $id ) + return $buttons; + + /* add next page after more tag button */ + array_splice( $buttons, 13, 0, 'wp_page' ); + + return $buttons; +} + /* Add Next Page Button on the First Row */ +add_filter( 'mce_buttons', 'danix_next_page_button', 1, 2 ); // 1st row