Changeset 2504385
- Timestamp:
- 03/27/2021 07:58:17 AM (5 years ago)
- Location:
- redirect-editor/trunk
- Files:
-
- 1 added
- 2 edited
-
readme.txt (modified) (1 diff)
-
redirect-editor.php (modified) (3 diffs)
-
style.css (added)
Legend:
- Unmodified
- Added
- Removed
-
redirect-editor/trunk/readme.txt
r2490301 r2504385 50 50 It adds in some protection from certain SEO software that has flaws which we patched. 51 51 == Screenshots == 52 == 2.4.3 == 53 Made the plugin actually look good with css thanks to luciolle24 54 Added a new icon by luciolle24. 55 This is open source, just contact us if you want to contribute. 52 56 53 57 1. Redirect editor is easy to use, you just type in the page you want redirected as shown in the example and then put the link to where we are redirecting to. It is the simplest redirect tool for seo and gives an accurate 301 response for WP. The other features help secure your site and currently happen in the background without any interaction, besides activating the plugin. -
redirect-editor/trunk/redirect-editor.php
r2490305 r2504385 3 3 /* 4 4 Plugin Name: Search Engine Optimization Redirect Editor 5 Version: 2.4. 25 Version: 2.4.3 6 6 Plugin URI: https://planetzuda.com 7 7 Description: If you need to redirect whether for search engine optimization purposes or otherwise you can use our app to redirect to any page. We provide a direct link to your xml sitemap which you can submit to search engines manually. We protect you against popular SEO plugins that damage your rankings by making your sitemap invisible to Google's bots by telling them to not index it, which is a free and automatically applied feature. More search features are coming. Our redirect editor is extremely useful and highly secure, which has been tested in bug bounties by white hat hackers, including our security and seo company. … … 63 63 'PZ_security_protection' 64 64 )); 65 add_action('init', array( 66 $this, 67 'css_style' 68 )); 65 69 add_action('admin_notices', array( 66 70 $this, … … 87 91 } 88 92 93 public function css_style() 94 { 95 add_action('wp_enqueue_scripts', 'css_style'); 96 function css_style() { 97 wp_register_style( 'namespace', '/style.css' ); 98 wp_enqueue_style( 'namespace' ); 99 100 } 101 102 } 89 103 public static function output_notices() 90 104 {
Note: See TracChangeset
for help on using the changeset viewer.