Changeset 2644585
- Timestamp:
- 12/15/2021 02:50:10 PM (4 years ago)
- Location:
- autotweaks/trunk
- Files:
-
- 2 edited
-
autotweaks.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
autotweaks/trunk/autotweaks.php
r2434623 r2644585 7 7 * Author URI: https://www.luisceladita.com 8 8 * Text Domain: autotweaks 9 * Version: 1. 29 * Version: 1.3 10 10 * License: GPLv2 or later 11 11 * License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 19 19 header( "X-Frame-Options: SAMEORIGIN" ); 20 20 header( "X-XSS-Protection: 1;mode=block" ); 21 header( "Content-Security-Policy: default-src 'self' https: //* data: 'unsafe-inline' 'unsafe-eval'" );21 header( "Content-Security-Policy: default-src 'self' https: data: 'unsafe-inline' 'unsafe-eval'; object-src 'none'" ); 22 22 header( "Referrer-Policy: no-referrer-when-downgrade" ); 23 23 header( "X-Content-Type-Options: nosniff" ); … … 161 161 162 162 //prevent all page titles from appearing on any page 163 function ele_disable_page_title( $return ) {164 return false;165 }166 add_filter( 'hello_elementor_page_title', 'ele_disable_page_title' );163 // function ele_disable_page_title( $return ) { 164 // return false; 165 // } 166 // add_filter( 'hello_elementor_page_title', 'ele_disable_page_title' ); 167 167 168 168 //Add Post ID to Posts and Pages Admin Columns -
autotweaks/trunk/readme.txt
r2434623 r2644585 4 4 Donate link: https://www.paypal.me/luisceladita 5 5 Requires at least: 4.2 6 Tested up to: 5. 57 Stable tag: 1. 26 Tested up to: 5.8 7 Stable tag: 1.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 19 19 * X-Frame-Options: SAMEORIGIN 20 20 * X-XSS-Protection: 1;mode=block 21 * Content-Security-Policy: default-src 'self' https: //* data: 'unsafe-inline' 'unsafe-eval'21 * Content-Security-Policy: default-src 'self' https: data: 'unsafe-inline' 'unsafe-eval'; object-src 'none' 22 22 * Referrer-Policy: no-referrer-when-downgrade 23 23 * X-Content-Type-Options: nosniff … … 61 61 62 62 == Changelog == 63 = 1.3 = 64 * minor changes 63 65 = 1.2 = 64 66 * minor changes
Note: See TracChangeset
for help on using the changeset viewer.