↧
MySQL Query to List WordPress Posts Using Meta Query
To get a list of WordPress Posts using meta query in MySQL, you can use […]
View ArticleSQL Query to Get Posts Using Category Name
select p.id, p.post_title from wp_posts p inner join wp_term_relationships tr on tr.object_id = p.ID inner […]
View Article[How To] Disable Loading ‘wp-embed.min.js’
You can use the following code snippet to prevent wp-embed.min.js; function wpassist_dequeue_scripts(){ wp_deregister_script('wp-embed'); } add_action( […]
View Article[How To] Remove Block Library CSS from WordPress
Gutenberg editor, that is the default editor for latest WordPress installations, uses special CSS libraries […]
View ArticleWP Update Salts – How To Secure WordPress
If you have ever edited your wp-config.php, you may be familiar with WordPress salt keys. […]
View Article