WordPress Information

WordPress Commands #

WP Cli command: #

Force WP re-install Core files: #

wp core download --force

Force re-install of all WP Plugins: #

wp plugin install $(wp plugin list --field=name) --force

Force re-install of all WP Themes: #

wp theme install $(wp theme list --field=name) --force

Change WP user role (for list of standard roles refer to WordPress Roles): #

wp user set-role id <new role>

List WP DB Tables: #

wp db tables

Force WP user to have new pw: #

wp user update id --user_pass=password

Have WP restore default user roles: #

wp role reset --all

WP Search Replace: #

wp search-replace <old value> <new value>

WP Utilities and Misc: #

Get list of WP Plugins that are active setting PHP memory: #

activelist=$(php -d memory_limit=512M $(which wp) option get active_plugins --format=json)`

Restore WP Plugins to activelist: #

php -d memory_limit=512M $(which wp) option set active_plugins $activelist --format=json

Turn off plugins one at a time with 30 second window: #

 for i in `wp plugin list --status=active | awk '{if(NR>1)print $1}'`; do wp plugin deactivate $i && echo -e "[-] Deactivating plugin $i and sleeping for 30 seconds, try refreshing Cx's website to test if the website is up" && sleep 30 && echo "[+] Reactivating the plugin" && wp plugin activate $i; done

WP Default .htaccess file: #

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

WP force SSL via .htaccess: (add to the .htaccess) #

RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ 
RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ 
RewriteEngine On 
RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://domain.com/$1 [R,L] 

RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ 
RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ 
RewriteEngine On 
RewriteCond %{HTTPS} off 
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]