Every default WordPress installation will create an account with a default Admin username. This can be a security issue. To change default Admin Username in WordPress you can use the…
To concat in MySQL you can use the concat or concat_ws function. Sample CONCAT output HELLO|WORLD|TEST Sample CONCAT_WS output HELLO|WORLD|TEST for more informations see DEV.MYSQL: Concat, CONCAT_WS
How to disable comments on posts older than date X in WordPress
To disable comments on posts older than date X in WordPress you can use the snippet below. Sample mySQL
How to remove any post that is older than X days in WordPress
To remove any post that is older than X days in WordPress you can use the query below. Sample mySQL
How to disable or enable Trackbacks and Pingbacks in WordPress
To disable or enable Trackbacks and Pingbacks in WordPress you can use the following mysql queries. Sample mySQL enable disable
How to give a user admin rights in mySql
To give a user admin rights in MySql you can use the following snippet. Sample mySql Query
How to change user password in WordPress using MySql
To change user password in WordPress using MySql you can use the following query. Sample MySql
How to change default Admin Username in WordPress
Every default WordPress installation will create an account with a default Admin username. This can be a security issue. To change default Admin Username in WordPress you can use the…
How to concat in MySQL
To concat in MySQL you can use the concat or concat_ws function. Sample CONCAT output HELLO|WORLD|TEST Sample CONCAT_WS output HELLO|WORLD|TEST for more informations see DEV.MYSQL: Concat, CONCAT_WS
How to rearrange columns in MySQL
To rearrange columns in MySQL you can use the following snippet.
How to copy a table in MySQL
To copy a table in MySQL you can use the following snippet. Sample MySQL
How to select entries less than 24 hours old in MySQL
To select entries less than 24 hours old in MySQL you can use the following snippet. Sample MySQL