How to make category for word post_content
I personally find it easier to use built-in WP functions rather than running straight MySQL queries, so here’s one option: <?php global $wpdb; // replace ‘yoursearchword’ with whatever you’re looking for. // the two % symbols are to find the word no matter what comes before or after. $query = “SELECT * FROM wp_posts WHERE … Read more