Skip to content
Read For Learn
Read For Learn
  • Database
    • Oracle
    • SQL
  • C
  • C++
  • Java
  • Java Script
  • jQuery
  • PHP
Read For Learn
  • Database
    • Oracle
    • SQL
  • C
  • C++
  • Java
  • Java Script
  • jQuery
  • PHP

login

How to change the wp-login.php page title?

It looks like it’s not easily accessible as it’s displayed as src: <title><?php echo get_bloginfo( ‘name’, ‘display’ ) . $separator . $title; ?></title> where the separator is: $separator = is_rtl() ? ‘ &rsaquo; ‘ : ‘ &lsaquo; ‘; and the $title part comes from: login_header( $title=”Some title” , … ); But it looks like you’ve … Read more

Categories PHP Tags filters, login, php

How do I change the logo on the login page?

Here is a pretty simple approach to changing the logo. Mark Jaquith of WordPress released a plugin that allows you to upload an image which will be shown on the login page instead of the WP logo. Customize the WordPress Login Screen Logo

Categories login Tags login

How to pass users back and forth using session data?

If you will work with sessions, then init this at first in your plugin, theme. add_action( ‘init’, ‘my_start_session’ ); function my_start_session() { if ( session_id() ) return; @session_cache_limiter(‘private, must-revalidate’); //private_no_expire @session_cache_expire(0); @session_start(); } Alternative use the library from Eric Mann: WP Session Manager, also his tutorial.

Categories login Tags authentication, login, session

Synchronize WordPress user accounts across multiple domains and installations without using WordPress MU

(side note) In wp-config you can set: define(‘CUSTOM_USER_TABLE’, $table_prefix.’my_users’); define(‘CUSTOM_USER_META_TABLE’, $table_prefix.’my_usermeta’); So I would expect this to work especially for the case when you have centralized your user database… but it does not: http://core.trac.wordpress.org/ticket/13323 (and a username/password for the remote database to get the info from) I think this is the best way to go: … Read more

Categories login Tags login

Share login data/cookies between multiple installations

You can share user tables between different WordPress installations by installing the second site (“Site B”) to use the original site’s (“Site A”) database, then choosing to use an alternate table prefix during installation so as to keep the rest of the data separate. The second part of the problem is sharing login cookies between … Read more

Categories login Tags login

How to disable autocomplete on the wp-login.php page

Your only solution (without modifying core files) is to use JavaScript. function wpse_159462_login_form() { echo <<<html <script> document.getElementById( “user_pass” ).autocomplete = “off”; </script> html; } add_action( ‘login_form’, ‘wpse_159462_login_form’ ); Having said that, if you’re not the only one that will be signing in I would advise against disabling autocomplete, it will almost certainly **** people … Read more

Categories login Tags autocomplete, login

Woocommerce registration page [closed]

Using the [woocommerce_my_account] shortcode, a user will see their account details if they’re logged in and if they’re not logged in, they’ll see a login and registration form. Using the same page title “My Account” for these different users isn’t ideal because a user that has never created an account won’t naturally navigate to a … Read more

Categories login Tags login, user-registration, woocommerce-offtopic

Stop WordPress from logging me out (need to keep me logged in)

WordPress keeps you logged in for 48 hours by default. If you click the “Remember Me” checkbox, it will remember you for 14 days. If you would like to remain logged in for longer than this period of time, you must use the “Auth Cookie Expiration” hook that WordPress provides. Now, you’ve mentioned that you’ve … Read more

Categories login Tags login

How to change the default logout link on WordPress Admin

You can filter ‘logout_url’ and return a custom value if you are in the admin area: add_filter( ‘logout_url’, ‘wpse_58453_logout_url’ ); function wpse_58453_logout_url( $default ) { // set your URL here return is_admin() ? ‘http://example.com/custom’ : $default; }

Categories redirect Tags login, logout, redirect

Disable WordPress 3.6 idle logout / login modal window / session expiration

It finally hit me that javascript would be behind the interim login modal behavior, and that gave me a new direction in my search. I have disabled the new login popups by adding the following to my theme’s functions.php file: // Disable login modals introduced in WordPress 3.6 remove_action( ‘admin_enqueue_scripts’, ‘wp_auth_check_load’ ); If anyone’s interested … Read more

Categories login Tags authentication, login, session, wp-login-form
Older posts
Newer posts
← Previous Page1 … Page154 Page155 Page156 … Page162 Next →
+ More

Recommended Hostings

Cloudways: Realize Your Website's Potential With Flexible & Affordable Hosting. 24/7/365 Support, Managed Security, Automated Backups, and 24/7 Real-time Monitoring.

FastComet: Fast SSD Hosting, Free Migration, Hack-Free Security, 24/7 Super Fast Support, 45 Day Money Back Guarantee.

Recent Added Topics

  • Bug in translation system: load_theme_textdomain() returns true, files are available and accessible but the language defaults to english
  • Custom Elementor controls not appearing in the widget Advanced tab using injection hooks
  • Get the name of the template/*html file used
  • Trying to Add Paging to Single Post Page
  • Sharing media files between live and staging servers
  • How to display the description of a custom post type in the dashboard?
  • Critical error on image display
  • Copying WP data and files into new install?
  • How to determine the DirectAdmin WordPress backup date?
  • How to get list of ALL tables in the database?
© 2026 Read For Learn
Next Page »
  • Database
    • Oracle
    • SQL
  • algorithm
  • asp.net
  • assembly
  • binary
  • c#
  • Git
  • hex
  • HTML
  • iOS
  • language angnostic
  • math
  • matlab
  • Tips & Trick
  • Tools
  • windows
  • C
  • C++
  • Java
  • javascript
  • Python
  • R
  • Java Script
  • jQuery
  • PHP
  • WordPress