by Garth | Aug 6, 2018 | Debugging, Wordpress
Define(‘WP_SITEURL’,’https://your-site-url’); Define(‘WP_HOME’,’https://your-site-url’); The above code must get added to your wp-config.php File It should fix the redirecting login issue. I left in inside my file after...
by Garth | Jul 30, 2018 | PHP, Snippets, Woocommerce, Wordpress
Click link below WPBeginner
by Garth | Jul 24, 2018 | PHP, Snippets, Wordpress
Here’s the Stackoverflow link Here’s the improved answer //The Function function in_array_r($needle, $haystack, $strict = false) { foreach ($haystack as $item) { if (($strict ? $item === $needle : $item == $needle) || (is_array($item) &&...
by Garth | Jul 23, 2018 | Plugins, Wordpress
Dynamic Featured...
by Garth | Jul 23, 2018 | PHP, Snippets, Wordpress
add_action( ‘admin_head’, ‘remove_my_meta_boxen’ ); function remove_my_meta_boxen() { remove_meta_box( ‘postimagediv’, ‘countries’, ‘side’ ); add_meta_box(‘postimagediv’, __(‘Country...
by Garth | Jul 22, 2018 | PHP, Plugins, Wordpress
Meta Box – WordPress Custom Fields Framework The code below relates to the meta box plugin. And the code below relates to 2 custom post types. Players and Coaches. And then adding meta fields to those custom post types. // Custom Post 1 register_post_type(...