X-Git-Url: https://git.danix.xyz/?p=danixland-site-plugin.git;a=blobdiff_plain;f=danixland-site-plugin.php;h=6db6576c61a8a0d998c04f11b2111a058944b2e0;hp=5484935841ad3e816c18ee64390185cdd4d1ef68;hb=b4113a8ec00f7083e8ec582daf32d8ea31260fda;hpb=bf61b3c6395a637ad275c622de8638661978c4c5 diff --git a/danixland-site-plugin.php b/danixland-site-plugin.php index 5484935..6db6576 100644 --- a/danixland-site-plugin.php +++ b/danixland-site-plugin.php @@ -2,6 +2,10 @@ /* Plugin Name: Site Plugin for danix.xyz Description: Site specific code changes for danix.xyz +Plugin URI: https://danix.xyz +Version: 0.7 +Author: Danilo 'danix' Macri +Author URI: https://danix.xyz */ /** @@ -74,7 +78,8 @@ add_shortcode('download', 'danix_download_button'); * The google analytics code * */ -function danix_google_anal() {?> +function danix_google_anal() { + if ( function_exists('cn_cookies_accepted') && cn_cookies_accepted() ) { ?> '; } 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