Reverse ordered pagination on home page

The default order of posts is date descending. To reverse it for home page you could hook into pre_get_posts and for is_home() query set order parameter to ASC. Note that that pages would still go from 1 ascending, they will just have posts on them in opposite order. I don’t think actually reversing order of … Read more

adsense code showing on random post thumb

Bit hard to understand exactly what you want to do as the grammar isn’t the best but i assume you want to return false for your Adsense widgets (using the code you linked to) when random posts thumbnail” plugin executes? You could add a check for the function your random posts thumbnail plugin uses so … Read more

Font Page overrides rewrites

Are you sure your rewrite rules are actually being saved? How are you calling this function to setup the rewrite rules? Action? What about flushing rewrite rules, are you flushing them anywhere in your project? Disable all of your plugins and test to make sure one isn’t flushing rewrite rules on every page load. As … Read more

Use page.php for front page

if it is “a very complex theme,” then there’s probably some hook into template_redirect malfunctioning. as @TomJNowell mentioned, using home.php or front-page.php should allow you to override page.php, but that’s not always preferred (I rarely use them myself), and will not necessarily fix the problem. you don’t need to assign a blog page in order … Read more

Loop doesn’t display posts. It displays a link to the home page instead

If the Home page is set to be a static page like you have, I think that the posts page is supposed to be a different page. http://codex.wordpress.org/Settings_Reading_Screen You can display your recent posts on front-page.php with WP Query, though: http://codex.wordpress.org/Class_Reference/WP_Query Here’s a mostly inclusive starter code, followed by the loop. It’s copied from a … Read more