Changeset 2769770
- Timestamp:
- 08/12/2022 01:31:16 PM (4 years ago)
- Location:
- dastra/trunk
- Files:
-
- 2 edited
-
dastra.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dastra/trunk/dastra.php
r2769757 r2769770 2 2 /** 3 3 * @package Dastra 4 * @version 0.1. 44 * @version 0.1.5 5 5 * Plugin Name: Dastra 6 6 * Plugin URI: http://wordpress.org/plugins/dastra/ 7 7 * Description: Dastra is a cookie consent management platform 8 8 * Author: Dastra 9 * Version: 0.1. 49 * Version: 0.1.5 10 10 * Author URI: https://dastra.eu 11 11 * … … 89 89 } 90 90 91 add_action('wp_ body_open', 'dastra_hook_head', 1);91 add_action('wp_footer', 'dastra_hook_footer', 1); 92 92 add_action('admin_enqueue_scripts', 'dastra_enqueue_stylesheet'); 93 93 … … 131 131 132 132 133 function dastra_hook_ head() {133 function dastra_hook_footer() { 134 134 $widget_id = get_option('widget_id'); 135 135 $public_key = get_option('public_key'); … … 149 149 } 150 150 151 return$output;151 echo $output; 152 152 } -
dastra/trunk/readme.txt
r2769750 r2769770 5 5 Requires at least: 5.0.2 6 6 Tested up to: 6.0.1 7 Stable tag: 0.1. 37 Stable tag: 0.1.5 8 8 License: MIT 9 9 License URI: https://opensource.org/licenses/MIT … … 38 38 == Changelog == 39 39 40 = 0.1.5 = 41 * Fix head rendering 42 43 = 0.1.4 = 44 * Fix another critical bug 45 40 46 = 0.1.3 = 41 47 * Fix critical bug (head injection of div)
Note: See TracChangeset
for help on using the changeset viewer.