X-Git-Url: https://git.danix.xyz/?p=danixland-site-plugin.git;a=blobdiff_plain;f=danixland-site-plugin.php;h=e2a56725fab1fff54f36df1b9954c99cc1953baf;hp=4e8aa542bd5a6f9f7ddcab3bd249f331d206a41d;hb=9afa258735262dea2104b6391afceb2b84eb6059;hpb=0fcdb4acb6fa54f765f6afc15cce0ed7adf71dd4 diff --git a/danixland-site-plugin.php b/danixland-site-plugin.php index 4e8aa54..e2a5672 100644 --- a/danixland-site-plugin.php +++ b/danixland-site-plugin.php @@ -1,7 +1,11 @@ '', - '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,4 +85,17 @@ function danix_gmaps($atts, $content = null) { return ''; } add_shortcode("googlemaps", "danix_gmaps"); +*/ +/* + * Swap src with data-src inside img tags to use lazyload + */ +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_filter( 'wp_get_attachment_image_attributes', 'dagreynix_lazy_load', 10, 2 );