Wordpress Password Hash Generator

This plugin simply generates the wordpress hash password and user password update sql query. Installation Download the zip file of the repository or clone the repository in your wp-content/plugins Download the zip file As traditionally upload the plugin to your wordpress site and activate 馃槂 . Clone the repository 1 git clone [email protected]:sachinkiranti/wp-password-hash-generator.git Activate it! Usage Add the shortcode to wordpress POST/PAGE or anywhere you want to :...

April 24, 2022 路 1 min 路 Me

How to Turn on Error Reporting in Wordpress

You got an error. The first thing we do is to check the error logs or reports. The logs or reports make it the developer or any tech guy easy to solve the problems. Today we will enable some of the hidden variables which can help us debug the WordPress errors more easily. These variables are mostly enabled only for the development process, not on production websites. Let鈥檚 get to the point now....

July 31, 2021 路 1 min 路 Me

Why Wordpress Prefer array() Instead of Short Array Syntax

Short array syntax [] was introduced a while back when PHP 5.4 was released. Basically it is ability to define arrays using [] instead of array(). 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <?php $arr1 = array( 'motto' => 'learning is fun.', 'url' => 'raisachin.com.np' ); $arr2 = [ 'motto' => 'learning is fun.', 'url' => 'raisachin.com.np' ]; echo '<pre>'; print_r($arr1); echo '</pre>'; Using any of the above will result the same output....

July 31, 2021 路 1 min 路 Me