X-Git-Url: https://git.danix.xyz/?p=danixland-site-plugin.git;a=blobdiff_plain;f=danixland-site-plugin.php;h=e2a56725fab1fff54f36df1b9954c99cc1953baf;hp=0245d552ecc5bf1ea3a81382c9e1f8fee86759a0;hb=9afa258735262dea2104b6391afceb2b84eb6059;hpb=0b37291cb093b12307582fe0a110732fb8917fb8 diff --git a/danixland-site-plugin.php b/danixland-site-plugin.php index 0245d55..e2a5672 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.1 +Author: Danilo 'danix' Macri +Author URI: https://danix.xyz */ /** @@ -43,38 +47,12 @@ function danix_gravatar( $atts ) { } add_shortcode('gravatar', 'danix_gravatar'); -/** - * The download button shortcode - * - * @param url $link link address. - * @param string $linkname text that will be displayed by the button. - * @return string HTML the link tag that will be rendered to the page. - * - */ -function danix_download_button( $atts ) { - extract(shortcode_atts(array( - 'link' => '', - 'linkname' => '' - ), $atts)); - - if ( empty($link) ) - return ''; - - $output = sprintf( - '%s', - $link, - $linkname - ); - - return $output; -} -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() ) { ?> '640', "height" => '480', @@ -106,25 +85,17 @@ function danix_gmaps($atts, $content = null) { return ''; } 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 - * +*/ + +/* + * Swap src with data-src inside img tags to use lazyload */ -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; +function dagreynix_lazy_load($atts) { + $default = get_template_directory_uri() . '/img/standard-post-thumb.png'; + if ( array_key_exists('src', $atts) ) { + $atts['data-src'] = $atts['src']; + $atts['src'] = $default; + } + return $atts; } - /* Add Next Page Button on the First Row */ -add_filter( 'mce_buttons', 'danix_next_page_button', 1, 2 ); // 1st row +// add_filter( 'wp_get_attachment_image_attributes', 'dagreynix_lazy_load', 10, 2 );