Plugin Directory

Changeset 3320621


Ignore:
Timestamp:
07/01/2025 12:30:52 PM (8 months ago)
Author:
osamaesh
Message:

bug fixing and new features

Location:
all-404-redirect-to-homepage
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • all-404-redirect-to-homepage/tags/5.2/functions.php

    r3320601 r3320621  
    10921092    $site_name = get_bloginfo('name');
    10931093    //$period_text = ucfirst(string: $period);
    1094     $period_text = ucfirst($period);
     1094   
     1095    $period_text = isset($period) ? ucfirst($period) : 'Weekly';
    10951096
    10961097
     
    11031104{
    11041105    $site_name = get_bloginfo('name');
    1105     $period_text = ucfirst($period);
     1106    //$period_text = ucfirst($period);
     1107    $period_text = isset($period) ? ucfirst($period) : 'Weekly';
    11061108    $date_range = p404_format_date_range($period, $stats['start_date'], $stats['end_date']);
    11071109
  • all-404-redirect-to-homepage/trunk/functions.php

    r3320601 r3320621  
    10921092    $site_name = get_bloginfo('name');
    10931093    //$period_text = ucfirst(string: $period);
    1094     $period_text = ucfirst($period);
     1094    $period_text = isset($period) ? ucfirst($period) : 'Weekly';
    10951095
    10961096
     
    11021102{
    11031103    $site_name = get_bloginfo('name');
    1104     $period_text = ucfirst($period);
     1104    //$period_text = ucfirst($period);
     1105    $period_text = isset($period) ? ucfirst($period) : 'Weekly';
     1106   
    11051107    $date_range = p404_format_date_range($period, $stats['start_date'], $stats['end_date']);
    11061108
  • all-404-redirect-to-homepage/trunk/readme.txt

    r3320602 r3320621  
    66License URI: http://www.gnu.org/licenses/gpl-2.0.html
    77Tested up to: 6.8.1
    8 Stable tag: 5.1
     8Stable tag: 5.2
    99
    1010Using this plugin, you can fix all 404 error links by redirecting them to homepage using the SEO 301 redirection. Improve your SEO rank & pages speed
Note: See TracChangeset for help on using the changeset viewer.