Plugin Directory

Changeset 2609008


Ignore:
Timestamp:
10/04/2021 05:12:30 PM (4 years ago)
Author:
ole1986
Message:

Update to version 1.0.6 from GitHub

Location:
social-page-metadata
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • social-page-metadata/tags/1.0.6/readme.txt

    r2575935 r2609008  
    55Tested up to: 5.7
    66Requires PHP: 7.0
    7 Stable tag: 1.0.5
     7Stable tag: 1.0.6
    88License: GPLv3
    99
  • social-page-metadata/tags/1.0.6/social-plugin-metadata.php

    r2575935 r2609008  
    33 * Plugin Name: Social Plugin - Metadata
    44 * Description: Used to display Facebook related page meta information as widget or shortcode (E.g. Business hours, About Us, Last Post)
    5  * Version: 1.0.5
     5 * Version: 1.0.6
    66 * Requires at least: 5.0
    77 * Requires PHP: 7.0
     
    377377            $resp = wp_remote_get($path . $url);
    378378        }
     379
     380        if ($resp instanceof \WP_Error) {
     381            return [];
     382        }
    379383       
    380 
    381384        return json_decode($resp['body'], true);
    382385    }
  • social-page-metadata/trunk/readme.txt

    r2575935 r2609008  
    55Tested up to: 5.7
    66Requires PHP: 7.0
    7 Stable tag: 1.0.5
     7Stable tag: 1.0.6
    88License: GPLv3
    99
  • social-page-metadata/trunk/social-plugin-metadata.php

    r2575935 r2609008  
    33 * Plugin Name: Social Plugin - Metadata
    44 * Description: Used to display Facebook related page meta information as widget or shortcode (E.g. Business hours, About Us, Last Post)
    5  * Version: 1.0.5
     5 * Version: 1.0.6
    66 * Requires at least: 5.0
    77 * Requires PHP: 7.0
     
    377377            $resp = wp_remote_get($path . $url);
    378378        }
     379
     380        if ($resp instanceof \WP_Error) {
     381            return [];
     382        }
    379383       
    380 
    381384        return json_decode($resp['body'], true);
    382385    }
Note: See TracChangeset for help on using the changeset viewer.