WordPress multidomains and subfolders

According to this codex entry, it is not possible to install WordPress in a sub-directory and use the Sub-domain install. However, you should be able to install WordPress in a sub-directory (example.com/foo) and use the other sub-directories for your networked sites (example.com/bar). Also, check out this entry for more info on installing WordPress in a … Read more

install.php Custom Taxonomy Term not being added to custom post

I believe I found the solution here: http://codex.wordpress.org/Function_Reference/wp_set_object_terms wp_set_object_terms( $post_id, $terms, $taxonomy, $append ); wp_set_object_terms( 4, $cat_id, ‘example_product_cat’); This is still placed inside of the install.php file. If there is a better solution, please add! Thanks. Roc.