find replace in post wordpress and worpdressmu

Use this query for wordpressmu users “UPDATE wp_1_posts SET post_content = REPLACE(post_content, ‘www.test.com’, ‘www.secondtest.com’);” Use this query for wordpress “UPDATE wp_posts SET post_content = REPLACE(post_content, ‘www.test.com’, ‘www.secondtest.com’);”

WordPress Theme Template Files List

Here is the list of files which are required in wordpress theme. Whenever you are creating the new theme for wordpress, make sure that following files are present in your theme. style.css The main stylesheet. This must be included with … Continue reading

How to show or exclude Certain Categories in a Menu – WordPress

If you want show only some categories in wordpress menu than use following command in header.php. <ul style=”float:left; width:840px;”> <?php wp_list_categories(‘orderby=name&include=5,4,8,9,52,65,35′); ?> </ul> If you want exclude some categories in wordpress menu than use following command in header.php. <ul style=”float:left; … Continue reading