Plugin Directory

Changeset 2504385


Ignore:
Timestamp:
03/27/2021 07:58:17 AM (5 years ago)
Author:
zuda
Message:

Making our plugin go from drab to fab with the css added by luciolle24

Location:
redirect-editor/trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • redirect-editor/trunk/readme.txt

    r2490301 r2504385  
    5050It adds in some protection from certain SEO software that has flaws which we patched.
    5151== Screenshots ==
     52== 2.4.3 ==
     53Made the plugin actually look good with css thanks to luciolle24
     54Added a new icon by luciolle24.
     55This is open source, just contact us if you want to contribute.
    5256
    53571. 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  
    33/*
    44Plugin Name: Search Engine Optimization Redirect Editor
    5 Version: 2.4.2
     5Version: 2.4.3
    66Plugin URI: https://planetzuda.com
    77Description: 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.
     
    6363            'PZ_security_protection'
    6464        ));
     65add_action('init', array(
     66            $this,
     67            'css_style'
     68        ));
    6569        add_action('admin_notices', array(
    6670            $this,
     
    8791    }
    8892
     93public function css_style()
     94{
     95add_action('wp_enqueue_scripts', 'css_style');
     96function css_style() {
     97    wp_register_style( 'namespace', '/style.css' );
     98    wp_enqueue_style( 'namespace' );
     99   
     100}
     101
     102}
    89103    public static function output_notices()
    90104    {
Note: See TracChangeset for help on using the changeset viewer.