{"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":"changer-lurl-de-ladmin-de-wp-sans-plugin-2","status":"publish","type":"post","link":"https:\/\/www.wpconsults.com\/fr\/changer-lurl-de-ladmin-de-wp-sans-plugin-2\/","title":{"rendered":"Modifier l'URL \"wp-admin\" sans plugin"},"content":{"rendered":"\n<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.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-style-plain is-layout-flow wp-block-quote-is-layout-flow\">\n<p><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>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>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><strong>Child theme will safeguard all your custom changes when update parent theme.<\/strong><\/p>\n\n\n\n<p>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>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>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>Replace <code>\/your-custom-url<\/code> with your desired custom login URL.<\/p>\n\n\n\n<p>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>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>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>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>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>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>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\/fr\/categorie\/conseils-wordpress-tutoriels-2\/\" 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\/fr\/comment-modifier-la-taille-de-limage-vedette-dans-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\">f\u00e9vrier 2, 2024<\/time><time class=\"updated\" datetime=\"2024-02-03T18:54:39+00:00\">f\u00e9vrier 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\/fr\/comment-modifier-la-taille-de-limage-vedette-dans-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\/fr\/categorie\/conseils-wordpress-tutoriels-2\/\" 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\/fr\/bouton-de-retour-a-la-page-precedente-2\/\" 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\">janvier 5, 2024<\/time><time class=\"updated\" datetime=\"2026-03-19T20:18:21+00:00\">mars 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\/fr\/bouton-de-retour-a-la-page-precedente-2\/\" 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\/fr\/categorie\/conseils-wordpress-tutoriels-2\/\" 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\/fr\/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\">janvier 3, 2024<\/time><time class=\"updated\" datetime=\"2024-01-23T17:13:21+00:00\">janvier 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\/fr\/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\/fr\/categorie\/conseils-wordpress-tutoriels-2\/\" 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\/fr\/changer-lurl-de-ladmin-de-wp-sans-plugin-2\/\" 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\">D\u00e9cembre 31, 2023<\/time><time class=\"updated\" datetime=\"2024-01-11T19:04:50+00:00\">janvier 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\/fr\/changer-lurl-de-ladmin-de-wp-sans-plugin-2\/\" 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\/fr\/categorie\/conseils-wordpress-tutoriels-2\/\" 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\/fr\/personnaliser-manuellement-la-page-de-connexion-de-wordpress-2\/\" 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\">D\u00e9cembre 31, 2023<\/time><time class=\"updated\" datetime=\"2026-01-29T11:23:03+00:00\">janvier 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\/fr\/personnaliser-manuellement-la-page-de-connexion-de-wordpress-2\/\" 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\/fr\/categorie\/meilleures-pratiques-en-matiere-de-referencement\/\" class=\"category-link-best-seo-practices\" rel=\"tag\">SEO<\/a> | <a href=\"https:\/\/www.wpconsults.com\/fr\/categorie\/meilleures-pratiques-en-matiere-de-referencement\/algorithme-de-google-decode\/\" 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\/fr\/google-met-en-garde-contre-les-urls-contenant-des-doubles-barres-obliques-resolu\/\" 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\">D\u00e9cembre 23, 2023<\/time><time class=\"updated\" datetime=\"2026-03-18T21:34:59+00:00\">mars 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\/fr\/google-met-en-garde-contre-les-urls-contenant-des-doubles-barres-obliques-resolu\/\" 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>Changer l'URL de connexion par d\u00e9faut de WordPress de \"wp-admin\" \u00e0 une URL personnalis\u00e9e est une mesure de s\u00e9curit\u00e9 proactive qui aide \u00e0 prot\u00e9ger votre site contre les menaces potentielles. \"Il existe des tonnes de plugins tiers pour le faire, mais n'oubliez pas qu'ils peuvent ralentir votre site web et causer des menaces pour la s\u00e9curit\u00e9. 1. Sauvegardez votre site WordPress Avant de faire...<\/p>","protected":false},"author":1,"featured_media":2460,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_sitemap_exclude":false,"_sitemap_priority":"","_sitemap_frequency":"","_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_post_was_ever_published":false,"_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}},"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":[],"_links":{"self":[{"href":"https:\/\/www.wpconsults.com\/fr\/wp-json\/wp\/v2\/posts\/2444","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.wpconsults.com\/fr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.wpconsults.com\/fr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.wpconsults.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.wpconsults.com\/fr\/wp-json\/wp\/v2\/comments?post=2444"}],"version-history":[{"count":0,"href":"https:\/\/www.wpconsults.com\/fr\/wp-json\/wp\/v2\/posts\/2444\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.wpconsults.com\/fr\/wp-json\/wp\/v2\/media\/2460"}],"wp:attachment":[{"href":"https:\/\/www.wpconsults.com\/fr\/wp-json\/wp\/v2\/media?parent=2444"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.wpconsults.com\/fr\/wp-json\/wp\/v2\/categories?post=2444"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.wpconsults.com\/fr\/wp-json\/wp\/v2\/tags?post=2444"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}