Changeset 3259601
- Timestamp:
- 03/21/2025 09:44:09 AM (10 months ago)
- Location:
- add-custom-codes/trunk
- Files:
-
- 2 edited
-
add-custom-codes.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
add-custom-codes/trunk/add-custom-codes.php
r3255819 r3259601 3 3 * Plugin Name: Add Custom Codes - Insert Header, Footer, Custom Code Snippets 4 4 * Description: Light-weight plugin to add Custom CSS, Javascript, Google Analytics, Search console verification tags and other custom code snippets to your Wordpress website. Go to <em>Appearance -> Add Custom Codes</em> after installing the plugin. 5 * Version: 4.7 5 * Version: 4.71 6 6 * Author: Saifudheen Mak 7 7 * Author URI: https://maktalseo.com … … 200 200 $accodes_global_css = get_global_custom_css(); 201 201 //escape 202 echo '<!-- Global CSS by Add Custom Codes --> <style type="text/css"> '. esc_html($accodes_global_css).' </style> <!-- End - Global CSS by Add Custom Codes -->';202 echo '<!-- Global CSS by Add Custom Codes --> <style type="text/css"> '.wp_strip_all_tags($accodes_global_css).' </style> <!-- End - Global CSS by Add Custom Codes -->'; 203 203 } 204 204 } … … 213 213 $accodes_global_css = get_global_custom_css(); 214 214 //escape 215 echo '<!-- Global CSS by Add Custom Codes --> <style type="text/css"> '. esc_html($accodes_global_css).' </style> <!-- End - Global CSS by Add Custom Codes -->';215 echo '<!-- Global CSS by Add Custom Codes --> <style type="text/css"> '.wp_strip_all_tags($accodes_global_css).' </style> <!-- End - Global CSS by Add Custom Codes -->'; 216 216 } 217 217 } -
add-custom-codes/trunk/readme.txt
r3255819 r3259601 6 6 Tested up to: 6.7.2 7 7 Requires PHP: 7.4 8 Stable tag: 4.7 8 Stable tag: 4.71 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 105 105 * Option to Add custom codes to taxonomy pages 106 106 107 = 4.71 = 108 * Fixed a bug with css inputs 109 107 110 == Upgrade Notice == 108 111 … … 139 142 = 4.7 = 140 143 Bug fixes & improvements. Option to add Custom Codes to taxonomy pages. 144 145 = 4.71 = 146 Fixed a bug with css inputs
Note: See TracChangeset
for help on using the changeset viewer.