by Garth | Mar 14, 2021 | PHP, Wordpress
function remove_default_post_type() { remove_menu_page( ‘edit.php’ ); } add_action( ‘admin_menu’, ‘remove_default_post_type’ );
by Garth | Mar 2, 2021 | PHP, Wordpress
function create_posttype() { register_post_type( ‘wpll_product’, array( ‘labels’ => array( ‘name’ => __( ‘Videos’ ), ‘singular_name’ => __( ‘Video’ ) ), ‘public’ => true,...
by Garth | Nov 2, 2020 | htaccess, Wordpress
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{QUERY_STRING} ^page_id=([0-9]*)&category=(.*)$ RewriteRule ^(.*)$ /%1/%2? [R=301,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ....
by Garth | Sep 17, 2020 | Plugins, Wordpress
Login No Captcha...
by Garth | Dec 28, 2019 | Debugging, Wordpress
So for the specificity of this case I was redirecting to the admin dashboard continuously when ever I tried to navigate to the home page.I was logged in as admin. The problem was that I updated my email and this caused a conflict with the site. WordPress wanted me to...
by Garth | Sep 16, 2019 | Plugins, Wordpress
This Plugin is Built for Contact Form 7 https://wordpress.org/plugins/contact-form-submissions/