modificato: danixland-site-plugin.php
[danixland-site-plugin.git] / danixland-site-plugin.php
index 5484935..e2a5672 100644 (file)
@@ -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(
-        '<a href="%s" class="download_button">%s</a>',
-        $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() ) { ?>
 <!-- Global site tag (gtag.js) - Google Analytics -->
 <script async src="https://www.googletagmanager.com/gtag/js?id=UA-23882460-1"></script>
 <script>
@@ -85,8 +63,9 @@ function danix_google_anal() {?>
   gtag('config', 'UA-23882460-1');
 </script>
 <?php }
+}
 add_action('wp_head', 'danix_google_anal', 10);
-
+*/
 /**
  * The googlemaps shortcode
  *
@@ -97,7 +76,7 @@ add_action('wp_head', 'danix_google_anal', 10);
  * @since 0.57
  *
  */
-function danix_gmaps($atts, $content = null) {
+/*function danix_gmaps($atts, $content = null) {
     extract(shortcode_atts(array(
       "width" => '640',
       "height" => '480',
@@ -106,4 +85,17 @@ function danix_gmaps($atts, $content = null) {
     return '<iframe width="'.$width.'" height="'.$height.'" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="'.$src.'&amp;output=embed" ></iframe>';
 }
 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 );