Basic release

This commit is contained in:
2023-12-30 14:28:21 +01:00
parent 4869f1ef2f
commit bf2892ab29
125 changed files with 10729 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<?php
namespace Bdp\Modules\Seo;
class Seo
{
public static function setup()
{
if (get_option('permalink_structure') === '') {
update_option('permalink_structure', '/%postname%/');
flush_rewrite_rules();
}
}
}

2
modules/seo/seo.php Normal file
View File

@ -0,0 +1,2 @@
<?php
require_once dirname(__FILE__) . '/classes/Seo.class.php';