Set home page to last page of a certain category

you can use the per_get_posts filter hook to change the order of the query something like: add_filter(‘pre_get_posts’, ‘filter_homepage_posts_order’); function filter_homepage_posts_order($query) { //only run is current page is home page if ($query->is_home) { $limit_number_of_posts = 5; //number of posts $featured_category_id = get_cat_id(‘Reviews’); // by cat name… $query->set(‘cat’, $featured_category_id); $query->set(‘posts_per_page’, $limit_number_of_posts); $query->set(‘order’,’DESC’) } return $query; }

blank page with no code or errors on blog

Make sure to read over this thread. There are step-by-step instructions on dealing with sub-folders and root URLs. It’s not as simple as changing the settings in WP, you have to edit a couple files to make it work as well. http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory

Set header for default posts page?

You could use a template. You just have to copy the file header.php and call the new file with the slug of the page testimonials. It would require 2 new files : header-testimonials.php and front-page.php. then you can call your custom header with get_header(‘testimonials’); See the template hierarchy. Just be sure Testimonials is your front … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)