Changeset 3006142
- Timestamp:
- 12/06/2023 11:08:13 AM (2 years ago)
- Location:
- sided/trunk
- Files:
-
- 3 edited
-
partials/functions.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
sided.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sided/trunk/partials/functions.php
r2976952 r3006142 5 5 function sided_include_sided_scripts() 6 6 { 7 global $wp_version; 8 7 9 $sided_initiate_script = get_option('sided_sided_initiate_script'); 8 10 if ($sided_initiate_script == 'true') { 9 wp_enqueue_script('Sided embed script', SIDED_AWS_S3_BASE_URL . '/embed-assets/load.min.js'); 11 wp_enqueue_script( 12 'Sided embed script', 13 sprintf('%s/embed-assets/load.min.js', SIDED_AWS_S3_BASE_URL), 14 [], 15 sprintf('%s_9.3.5', $wp_version) 16 ); 10 17 11 18 add_filter( 'script_loader_tag', function ( $tag, $handle ) { -
sided/trunk/readme.txt
r2986550 r3006142 5 5 Requires at least: 4.7 6 6 Tested up to: 6.2 7 Stable tag: 1.2. 87 Stable tag: 1.2.9 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 38 38 39 39 == Changelog == 40 = 1.2.9 = 41 * Set specific version for the Sided script 42 40 43 = 1.2.8 = 41 44 * Added option to add link and tags to sides -
sided/trunk/sided.php
r2986550 r3006142 4 4 * Plugin URI: https://sided.co/ 5 5 * Description: It is a wordpress plugin to embed sided polls in your Wordpress website. 6 * Version: 1.2. 86 * Version: 1.2.9 7 7 * Author: Sided 8 8 **/ 9 9 10 define( 'SIDED_VERSION', '1.2. 8' );10 define( 'SIDED_VERSION', '1.2.9' ); 11 11 define( 'SIDED_PLUGIN', __FILE__ ); 12 12 define( 'SIDED_PLUGIN_DIR', untrailingslashit( dirname( SIDED_PLUGIN ) ) );
Note: See TracChangeset
for help on using the changeset viewer.