{"id":2444,"date":"2023-12-31T05:33:22","date_gmt":"2023-12-31T05:33:22","guid":{"rendered":"https:\/\/wpconsults.com\/?p=2444"},"modified":"2024-01-11T19:04:50","modified_gmt":"2024-01-11T19:04:50","slug":"change-wp-admin-url-without-plugin","status":"publish","type":"post","link":"https:\/\/www.wpconsults.com\/en_gb\/change-wp-admin-url-without-plugin\/","title":{"rendered":"Change &#8220;wp-admin&#8221; URL Without Plugin"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Changing the default WordPress login URL from &#8220;wp-admin&#8221; to a custom URL is a proactive security measure that helps safeguard your site against potential threats.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-style-plain is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\"><strong>&#8220;There are tons of 3rd party plugin to do it but remember they may slow down your website also may cause security threat.&#8221;<\/strong><\/p>\n<\/blockquote>\n\n\n<figure class=\"wp-block-post-featured-image\"><img data-recalc-dims=\"1\" fetchpriority=\"high\" decoding=\"async\" width=\"1280\" height=\"720\" src=\"https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2023\/12\/change-wp-admin-manually-jpg.webp?resize=1280%2C720&#038;ssl=1\" class=\"attachment-post-thumbnail size-post-thumbnail wp-post-image\" alt=\"How To Change wp-admin URL Without Plugins\" style=\"object-fit:cover;\" srcset=\"https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2023\/12\/change-wp-admin-manually-jpg.webp?w=1280&amp;ssl=1 1280w, https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2023\/12\/change-wp-admin-manually-jpg.webp?resize=300%2C169&amp;ssl=1 300w, https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2023\/12\/change-wp-admin-manually-jpg.webp?resize=1024%2C576&amp;ssl=1 1024w, https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2023\/12\/change-wp-admin-manually-jpg.webp?resize=768%2C432&amp;ssl=1 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" \/><\/figure>\n\n\n<h2 class=\"wp-block-heading\">1. Backup Your WordPress Site<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Before making any changes, create a full backup of your WordPress site, including the database and files.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">2. Create a Child Theme. Skip if you already have.<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Follow the steps in the article <a href=\"https:\/\/wpconsults.com\/how-create-wordpress-child-theme\/\" rel=\"nofollow noopener\" target=\"_blank\">How to Create a WordPress Child Theme<\/a> to create a child theme for your active WordPress theme. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Child theme will safeguard all your custom changes when update parent theme.<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">By creating a child theme, you maintain a clean separation between your customizations and the parent theme, making it easier to manage and update your site in the long run.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">3. Access Your Child Theme Files<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Use an FTP client or your hosting file manager to navigate to the directory of your child theme. This is typically located at <code>wp-content\/themes\/your-child-theme-name\/<\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">4. Edit the functions.php File in the Child Theme<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Add the following code to the <code>functions.php<\/code> file of your child theme:<\/p>\n\n\n\n<pre class=\"wp-block-code has-theme-palette-1-color has-theme-palette-3-background-color has-text-color has-background has-link-color wp-elements-2725b34925e689f18f484e1fa108a330\"><code>\/\/ Change login URL\nfunction custom_login_url() {\n    return home_url('<strong><mark style=\"background-color:rgba(0, 0, 0, 0);color:#f90505\" class=\"has-inline-color\">\/your-custom-url<\/mark><\/strong>');\n}\n\nadd_filter('login_headerurl', 'custom_login_url');<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Replace <code>\/your-custom-url<\/code> with your desired custom login URL.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Save the changes in modified <code>functions.php<\/code> file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">5. Edit the .htaccess File<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Edit the <code>.htaccess<\/code> file in the root directory of your WordPress installation. Add the following lines at the beginning of the file:<\/p>\n\n\n\n<pre class=\"wp-block-code has-theme-palette-1-color has-theme-palette-3-background-color has-text-color has-background has-link-color wp-elements-148b9336311e6dce9bf55d4e39fe4c59\"><code>&lt;IfModule mod_rewrite.c&gt;\n    RewriteEngine On\n    RewriteRule ^<mark style=\"background-color:rgba(0, 0, 0, 0);color:#fb0101\" class=\"has-inline-color\">your-custom-url<\/mark>\/?$ wp-login.php &#91;L]\n&lt;\/IfModule&gt;<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Replace <code>your-custom-url<\/code> with the same custom login URL you specified in the child theme&#8217;s <code>functions.php<\/code> file.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Save the changes in modified <code>.htaccess<\/code> file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">6. Test the New Login URL<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Visit your custom login URL (e.g., <code>https:\/\/yoursite.com\/your-custom-url<\/code>) to ensure that the new login page loads correctly. Also, test the login\/logout processes, password recovery, and any custom functionality.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">7. Update Permalinks<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">As a good practice, go to <strong>&#8220;Settings&#8221; &gt; &#8220;Permalinks&#8221;<\/strong> set post name as permalink in your WordPress admin dashboard and click &#8220;Save Changes&#8221; to update your site&#8217;s permalinks.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">8. Clear Cache<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Clear your browser cache and refresh the login page.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n<style>.wp-block-kadence-advancedheading.kt-adv-heading2444_67c80d-9d, .wp-block-kadence-advancedheading.kt-adv-heading2444_67c80d-9d[data-kb-block=\"kb-adv-heading2444_67c80d-9d\"]{display:block;padding-top:var(--global-kb-spacing-lg, 3rem);font-size:var(--global-kb-font-size-lg, 2rem);font-style:normal;}.wp-block-kadence-advancedheading.kt-adv-heading2444_67c80d-9d mark.kt-highlight, .wp-block-kadence-advancedheading.kt-adv-heading2444_67c80d-9d[data-kb-block=\"kb-adv-heading2444_67c80d-9d\"] mark.kt-highlight{font-style:normal;color:#f76a0c;-webkit-box-decoration-break:clone;box-decoration-break:clone;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}.wp-block-kadence-advancedheading.kt-adv-heading2444_67c80d-9d img.kb-inline-image, .wp-block-kadence-advancedheading.kt-adv-heading2444_67c80d-9d[data-kb-block=\"kb-adv-heading2444_67c80d-9d\"] img.kb-inline-image{width:150px;vertical-align:baseline;}<\/style>\n<span class=\"kt-adv-heading2444_67c80d-9d wp-block-kadence-advancedheading has-theme-palette-5-color has-text-color\" data-kb-block=\"kb-adv-heading2444_67c80d-9d\">Related Posts<\/span>\n\n\n<style>.kb-posts-id-2444_04b825-03 .entry.loop-entry .entry-header .entry-title{font-size:25px;}.kb-posts-id-2444_04b825-03 .kb-post-list-item{display:grid;}<\/style><ul class=\"wp-block-kadence-posts kb-posts kadence-posts-list kb-posts-id-2444_04b825-03 content-wrap grid-cols kb-posts-style-boxed grid-sm-col-1 grid-lg-col-1 item-image-style-above\"><li class=\"kb-post-list-item\">\n\t<article class=\"entry content-bg loop-entry kb-post-no-image post-2792 post type-post status-publish format-standard has-post-thumbnail hentry category-wordpress-tips-tutorials tag-without-plugin-series\">\n\t\t\t\t<div class=\"entry-content-wrap\">\n\t\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/www.wpconsults.com\/en_gb\/category\/wordpress-tips-tutorials\/\" class=\"category-link-wordpress-tips-tutorials\" rel=\"tag\">WordPress Tips &amp; Tutorials<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/www.wpconsults.com\/en_gb\/how-to-change-featured-image-size-in-wordpress\/\" rel=\"bookmark\">How to change featured image size in WordPress?<\/a><\/h2>\t<div class=\"entry-meta entry-meta-divider-dot\">\n\t<span class=\"posted-by\"><span class=\"meta-label\">By<\/span><span class=\"author vcard\"><span class=\"fn n\">Abdullah Nouman<\/span><\/span><\/span>\t\t\t<span class=\"posted-on\">\n\t\t\t\t<time class=\"entry-date published\" datetime=\"2024-02-02T21:20:23+00:00\">February 2, 2024<\/time><time class=\"updated\" datetime=\"2024-02-03T18:54:39+00:00\">February 3, 2024<\/time>\t\t\t<\/span>\n\t\t\t\t<\/div><!-- .entry-meta -->\n\t<\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>The size of a featured image depends on several factors, such as the theme, layout, and design of your WordPress site, as well as the dimensions and quality of the original image. However, a good starting point for your WordPress featured image size is 1200 x 628 pixels. These dimensions tend to work well across&#8230;<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/www.wpconsults.com\/en_gb\/how-to-change-featured-image-size-in-wordpress\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> How to change featured image size in WordPress?<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t\t<\/div>\n\t<\/article>\n<\/li>\n<li class=\"kb-post-list-item\">\n\t<article class=\"entry content-bg loop-entry kb-post-no-image post-2529 post type-post status-publish format-standard has-post-thumbnail hentry category-wordpress-tips-tutorials tag-without-plugin-series\">\n\t\t\t\t<div class=\"entry-content-wrap\">\n\t\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/www.wpconsults.com\/en_gb\/category\/wordpress-tips-tutorials\/\" class=\"category-link-wordpress-tips-tutorials\" rel=\"tag\">WordPress Tips &amp; Tutorials<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/www.wpconsults.com\/en_gb\/back-to-previous-page-button\/\" rel=\"bookmark\">How to Add a Go Back to Previous Page Button in WordPress (2 Easy Methods)<\/a><\/h2>\t<div class=\"entry-meta entry-meta-divider-dot\">\n\t<span class=\"posted-by\"><span class=\"meta-label\">By<\/span><span class=\"author vcard\"><span class=\"fn n\">Abdullah Nouman<\/span><\/span><\/span>\t\t\t<span class=\"posted-on\">\n\t\t\t\t<time class=\"entry-date published\" datetime=\"2024-01-05T20:09:40+00:00\">January 5, 2024<\/time><time class=\"updated\" datetime=\"2026-03-19T20:18:21+00:00\">March 19, 2026<\/time>\t\t\t<\/span>\n\t\t\t\t<\/div><!-- .entry-meta -->\n\t<\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>In this tutorial, I will guide you through the process of adding a &#8220;Back to Previous Page&#8221; or &#8221; Go Back&#8221; button using ElementorThis site use affiliate links to promote recommended product and services and Gutenberg\/ Block Editor. Hey to make thing easier I just created a WordPress plugin, by using it you can easily&#8230;<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/www.wpconsults.com\/en_gb\/back-to-previous-page-button\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> How to Add a Go Back to Previous Page Button in WordPress (2 Easy Methods)<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t\t<\/div>\n\t<\/article>\n<\/li>\n<li class=\"kb-post-list-item\">\n\t<article class=\"entry content-bg loop-entry kb-post-no-image post-2523 post type-post status-publish format-standard has-post-thumbnail hentry category-wordpress-tips-tutorials tag-without-plugin-series tag-key-feature tag-wordpress-tutorials\">\n\t\t\t\t<div class=\"entry-content-wrap\">\n\t\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/www.wpconsults.com\/en_gb\/category\/wordpress-tips-tutorials\/\" class=\"category-link-wordpress-tips-tutorials\" rel=\"tag\">WordPress Tips &amp; Tutorials<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/www.wpconsults.com\/en_gb\/duplicate-posts-pages-in-wordpress\/\" rel=\"bookmark\">How to Duplicate Posts and Pages Without Plugin in WordPress<\/a><\/h2>\t<div class=\"entry-meta entry-meta-divider-dot\">\n\t<span class=\"posted-by\"><span class=\"meta-label\">By<\/span><span class=\"author vcard\"><span class=\"fn n\">Abdullah Nouman<\/span><\/span><\/span>\t\t\t<span class=\"posted-on\">\n\t\t\t\t<time class=\"entry-date published\" datetime=\"2024-01-03T17:06:00+00:00\">January 3, 2024<\/time><time class=\"updated\" datetime=\"2024-01-23T17:13:21+00:00\">January 23, 2024<\/time>\t\t\t<\/span>\n\t\t\t\t<\/div><!-- .entry-meta -->\n\t<\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>Duplicating existing content can save you time and effort, allowing you to quickly create new variations of page, post or landing page without starting from scratch. While WordPress doesn&#8217;t have a built-in duplicate feature, you can easily add this functionality using a simple code snippet. Here&#8217;s a step-by-step guide: 1. Open the Theme Editor: Note:&#8230;<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/www.wpconsults.com\/en_gb\/duplicate-posts-pages-in-wordpress\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> How to Duplicate Posts and Pages Without Plugin in WordPress<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t\t<\/div>\n\t<\/article>\n<\/li>\n<li class=\"kb-post-list-item\">\n\t<article class=\"entry content-bg loop-entry kb-post-no-image post-2444 post type-post status-publish format-standard has-post-thumbnail hentry category-wordpress-tips-tutorials tag-without-plugin-series\">\n\t\t\t\t<div class=\"entry-content-wrap\">\n\t\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/www.wpconsults.com\/en_gb\/category\/wordpress-tips-tutorials\/\" class=\"category-link-wordpress-tips-tutorials\" rel=\"tag\">WordPress Tips &amp; Tutorials<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/www.wpconsults.com\/en_gb\/change-wp-admin-url-without-plugin\/\" rel=\"bookmark\">Change &#8220;wp-admin&#8221; URL Without Plugin<\/a><\/h2>\t<div class=\"entry-meta entry-meta-divider-dot\">\n\t<span class=\"posted-by\"><span class=\"meta-label\">By<\/span><span class=\"author vcard\"><span class=\"fn n\">Abdullah Nouman<\/span><\/span><\/span>\t\t\t<span class=\"posted-on\">\n\t\t\t\t<time class=\"entry-date published\" datetime=\"2023-12-31T05:33:22+00:00\">December 31, 2023<\/time><time class=\"updated\" datetime=\"2024-01-11T19:04:50+00:00\">January 11, 2024<\/time>\t\t\t<\/span>\n\t\t\t\t<\/div><!-- .entry-meta -->\n\t<\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>Changing the default WordPress login URL from &#8220;wp-admin&#8221; to a custom URL is a proactive security measure that helps safeguard your site against potential threats. &#8220;There are tons of 3rd party plugin to do it but remember they may slow down your website also may cause security threat.&#8221; 1. Backup Your WordPress Site Before making&#8230;<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/www.wpconsults.com\/en_gb\/change-wp-admin-url-without-plugin\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> Change &#8220;wp-admin&#8221; URL Without Plugin<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t\t<\/div>\n\t<\/article>\n<\/li>\n<li class=\"kb-post-list-item\">\n\t<article class=\"entry content-bg loop-entry kb-post-no-image post-2433 post type-post status-publish format-standard has-post-thumbnail hentry category-wordpress-tips-tutorials tag-without-plugin-series\">\n\t\t\t\t<div class=\"entry-content-wrap\">\n\t\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/www.wpconsults.com\/en_gb\/category\/wordpress-tips-tutorials\/\" class=\"category-link-wordpress-tips-tutorials\" rel=\"tag\">WordPress Tips &amp; Tutorials<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/www.wpconsults.com\/en_gb\/customize-wordpress-login-page-manually\/\" rel=\"bookmark\">Customize WordPress Login Page Manually<\/a><\/h2>\t<div class=\"entry-meta entry-meta-divider-dot\">\n\t<span class=\"posted-by\"><span class=\"meta-label\">By<\/span><span class=\"author vcard\"><span class=\"fn n\">Abdullah Nouman<\/span><\/span><\/span>\t\t\t<span class=\"posted-on\">\n\t\t\t\t<time class=\"entry-date published\" datetime=\"2023-12-31T04:47:01+00:00\">December 31, 2023<\/time><time class=\"updated\" datetime=\"2026-01-29T11:23:03+00:00\">January 29, 2026<\/time>\t\t\t<\/span>\n\t\t\t\t<\/div><!-- .entry-meta -->\n\t<\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>We&#8217;ll guide you through the process of customizing or rebranding your WordPress login page without any installing any plugin. 1. Access your WordPress Files Use FTP or cPanel\/hPanel to access your WordPress installation directory. 2. Creating a Child Theme for Safe Customization In the &#8220;wp-content\/themes\/&#8221; directory, create a new folder for your child theme. For&#8230;<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/www.wpconsults.com\/en_gb\/customize-wordpress-login-page-manually\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> Customize WordPress Login Page Manually<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t\t<\/div>\n\t<\/article>\n<\/li>\n<li class=\"kb-post-list-item\">\n\t<article class=\"entry content-bg loop-entry kb-post-no-image post-2302 post type-post status-publish format-standard has-post-thumbnail hentry category-best-seo-practices category-google-algorithm-decoded tag-without-plugin-series\">\n\t\t\t\t<div class=\"entry-content-wrap\">\n\t\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/www.wpconsults.com\/en_gb\/category\/best-seo-practices\/\" class=\"category-link-best-seo-practices\" rel=\"tag\">SEO<\/a> | <a href=\"https:\/\/www.wpconsults.com\/en_gb\/category\/best-seo-practices\/google-algorithm-decoded\/\" class=\"category-link-google-algorithm-decoded\" rel=\"tag\">Google Algorithm Decoded<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/www.wpconsults.com\/en_gb\/google-warns-against-urls-with-double-slashes-solved\/\" rel=\"bookmark\">Google Warns Against URLs with Double Slashes [Solved] &#8211; 2026<\/a><\/h2>\t<div class=\"entry-meta entry-meta-divider-dot\">\n\t<span class=\"posted-by\"><span class=\"meta-label\">By<\/span><span class=\"author vcard\"><span class=\"fn n\">Abdullah Nouman<\/span><\/span><\/span>\t\t\t<span class=\"posted-on\">\n\t\t\t\t<time class=\"entry-date published\" datetime=\"2023-12-23T03:39:19+00:00\">December 23, 2023<\/time><time class=\"updated\" datetime=\"2026-03-18T21:34:59+00:00\">March 18, 2026<\/time>\t\t\t<\/span>\n\t\t\t\t<\/div><!-- .entry-meta -->\n\t<\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>Have you ever come across URLs with double slashes, like &#8220;http:\/\/www.example.com\/path\/\/index.html,&#8221; and wondered what causes this &amp; whether it impacts your website&#8217;s SEO? And the answer is big YES! In this article, we&#8217;ll delve into the reasons behind double slashes in URLs, their potential consequences, and how to solve them for a smoother user experience&#8230;<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/www.wpconsults.com\/en_gb\/google-warns-against-urls-with-double-slashes-solved\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> Google Warns Against URLs with Double Slashes [Solved] &#8211; 2026<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t\t<\/div>\n\t<\/article>\n<\/li>\n<\/ul>","protected":false},"excerpt":{"rendered":"<p>Changing the default WordPress login URL from &#8220;wp-admin&#8221; to a custom URL is a proactive security measure that helps safeguard your site against potential threats. &#8220;There are tons of 3rd party plugin to do it but remember they may slow down your website also may cause security threat.&#8221; 1. Backup Your WordPress Site Before making&#8230;<\/p>","protected":false},"author":1,"featured_media":2460,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[7],"tags":[64],"class_list":["post-2444","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wordpress-tips-tutorials","tag-without-plugin-series"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2023\/12\/change-wp-admin-manually-jpg.webp?fit=1280%2C720&ssl=1","jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/pboFy3-Dq","jetpack-related-posts":[{"id":4175,"url":"https:\/\/www.wpconsults.com\/en_gb\/wordpress-images-not-loading-after-migration-fixed\/","url_meta":{"origin":2444,"position":0},"title":"WordPress Images Not Loading After Migration (Fixed)","author":"Abdullah Nouman","date":"March 10, 2025","format":false,"excerpt":"Migrating a WordPress website to a new host or domain is a common process, but it can sometimes lead to issues, including images not loading properly. This problem can occur due to incorrect file paths, SSL issues, or missing thumbnails. But don't worry, there are several easy & effective solutions\u2026","rel":"","context":"In &quot;WordPress Tips &amp; Tutorials&quot;","block_context":{"text":"WordPress Tips &amp; Tutorials","link":"https:\/\/www.wpconsults.com\/en_gb\/category\/wordpress-tips-tutorials\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":2276,"url":"https:\/\/www.wpconsults.com\/en_gb\/create-registration-login-page\/","url_meta":{"origin":2444,"position":1},"title":"How to Create Registration\/Login Page for WP Job Manager","author":"Abdullah Nouman","date":"December 10, 2023","format":false,"excerpt":"WP Job Manager doesn\u2019t provide a built-in registration\/login page.\u00a0 But Do not worry. Creating a custom registration\/login page for WP Job Manager involves a few steps, including installing a plugin and customizing your theme. Simply Follow this step-by-step tutorial Step 1: Install WP Job Manager Make sure you have the\u2026","rel":"","context":"In &quot;WordPress Tips &amp; Tutorials&quot;","block_context":{"text":"WordPress Tips &amp; Tutorials","link":"https:\/\/www.wpconsults.com\/en_gb\/category\/wordpress-tips-tutorials\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":2395,"url":"https:\/\/www.wpconsults.com\/en_gb\/wordpress-ecommerce-plugins\/","url_meta":{"origin":2444,"position":2},"title":"Top 6 WordPress Ecommerce Plugins in 2026","author":"Abdullah Nouman","date":"December 29, 2023","format":false,"excerpt":"There are limited WordPress Ecommerce Plugins available, WooCommerce is the most popular one but there are other alternative too. In this article, I will introduce you with 6 WordPress ecommerce plugins. I wrote this article for those who are looking for WooCommerce Alternatives for WordPress and for those who want\u2026","rel":"","context":"In &quot;WordPress Tips &amp; Tutorials&quot;","block_context":{"text":"WordPress Tips &amp; Tutorials","link":"https:\/\/www.wpconsults.com\/en_gb\/category\/wordpress-tips-tutorials\/"},"img":{"alt_text":"Best WooCommerce Alternatives for wordpress","src":"https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2023\/12\/Woocommerce-Alternatives-for-wordpress-jpg.webp?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2023\/12\/Woocommerce-Alternatives-for-wordpress-jpg.webp?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2023\/12\/Woocommerce-Alternatives-for-wordpress-jpg.webp?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2023\/12\/Woocommerce-Alternatives-for-wordpress-jpg.webp?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2023\/12\/Woocommerce-Alternatives-for-wordpress-jpg.webp?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":5051,"url":"https:\/\/www.wpconsults.com\/en_gb\/track-visitor-behavior-with-wordpress-heatmaps\/","url_meta":{"origin":2444,"position":3},"title":"How to Setup WordPress Heatmaps (3 Simple Ways) Free + Premium","author":"Abdullah Nouman","date":"May 31, 2025","format":false,"excerpt":"If you\u2019re struggling to understand what\u2019s helping (or hurting) your website\u2019s performance, WordPress heatmaps can reveal exactly how people interact with your pages \u2014 from the elements they click to how far they scroll. Over time, I\u2019ve tested multiple heatmapping solutions. Today, I\u2019ll Walk you through 3 simple and effective\u2026","rel":"","context":"In &quot;WordPress Tips &amp; Tutorials&quot;","block_context":{"text":"WordPress Tips &amp; Tutorials","link":"https:\/\/www.wpconsults.com\/en_gb\/category\/wordpress-tips-tutorials\/"},"img":{"alt_text":"How to Setup WordPress Heatmaps","src":"https:\/\/www.wpconsults.com\/wp-content\/uploads\/2025\/05\/How-to-Setup-WordPress-Heatmaps.avif","width":350,"height":200,"srcset":"https:\/\/www.wpconsults.com\/wp-content\/uploads\/2025\/05\/How-to-Setup-WordPress-Heatmaps.avif 1x, https:\/\/www.wpconsults.com\/wp-content\/uploads\/2025\/05\/How-to-Setup-WordPress-Heatmaps.avif 1.5x, https:\/\/www.wpconsults.com\/wp-content\/uploads\/2025\/05\/How-to-Setup-WordPress-Heatmaps.avif 2x, https:\/\/www.wpconsults.com\/wp-content\/uploads\/2025\/05\/How-to-Setup-WordPress-Heatmaps.avif 3x"},"classes":[]},{"id":5268,"url":"https:\/\/www.wpconsults.com\/en_gb\/can-a-wordpress-website-handle-1-million-traffic\/","url_meta":{"origin":2444,"position":4},"title":"Can a WordPress Website Handle 1 Million+ Traffic?","author":"Abdullah Nouman","date":"August 27, 2025","format":false,"excerpt":"WordPress is one of the most popular website platforms in the world. Many people use it for blogs, business sites, and even big e-commerce stores. A common question that comes up is: Can a WordPress website really handle more than 1 million visitors? The short answer is yes, it can.\u2026","rel":"","context":"In &quot;WordPress Tips &amp; Tutorials&quot;","block_context":{"text":"WordPress Tips &amp; Tutorials","link":"https:\/\/www.wpconsults.com\/en_gb\/category\/wordpress-tips-tutorials\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":3196,"url":"https:\/\/www.wpconsults.com\/en_gb\/how-to-move-recaptcha-v3-badge-to-left-in-wordpress\/","url_meta":{"origin":2444,"position":5},"title":"How to Move ReCAPTCHA V3 Badge to Left in WordPress","author":"Abdullah Nouman","date":"June 14, 2025","format":false,"excerpt":"Google reCAPTCHA v3 is a powerful tool to protect your WordPress site from bots and spam without user interaction. However, its default badge often appears in the bottom right corner, which may conflict with UI elements or custom designs. The solution is to move ReCAPTCHA V3 Badge to Left side\u2026","rel":"","context":"In &quot;WordPress Tips &amp; Tutorials&quot;","block_context":{"text":"WordPress Tips &amp; Tutorials","link":"https:\/\/www.wpconsults.com\/en_gb\/category\/wordpress-tips-tutorials\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/www.wpconsults.com\/wp-content\/uploads\/2024\/05\/WpConsults-Default-post-thumbnail-jpg.webp?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]}],"_links":{"self":[{"href":"https:\/\/www.wpconsults.com\/en_gb\/wp-json\/wp\/v2\/posts\/2444","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.wpconsults.com\/en_gb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.wpconsults.com\/en_gb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.wpconsults.com\/en_gb\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.wpconsults.com\/en_gb\/wp-json\/wp\/v2\/comments?post=2444"}],"version-history":[{"count":0,"href":"https:\/\/www.wpconsults.com\/en_gb\/wp-json\/wp\/v2\/posts\/2444\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.wpconsults.com\/en_gb\/wp-json\/wp\/v2\/media\/2460"}],"wp:attachment":[{"href":"https:\/\/www.wpconsults.com\/en_gb\/wp-json\/wp\/v2\/media?parent=2444"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.wpconsults.com\/en_gb\/wp-json\/wp\/v2\/categories?post=2444"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.wpconsults.com\/en_gb\/wp-json\/wp\/v2\/tags?post=2444"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}