How to make blog posts appear under different menu items?

By default, “Category Archives” (which is what you’re describing) are at the URL example.com/category/{category}. I would recommend that you do the following: Delete your blog and portfolio pages. Don’t just trash them, but delete them permanently from your trash (this will free up the permalinks you mention in your post). Create the two categories, Blog … Read more

problem with wordpress author profile page URL

How are you creating the author’s link? If you put in your template: <?php the_author_posts_link(); ?> It will write the author’s name and link for the current post. To modify the template for the author page, wordpress search for the following files in your theme’s folder (in this order): author-{nicename}.php author-{id}.php author.php archive.php index.php

older blog posts not showing in new theme

What posts exactly are not shown? In your code there are no page links (pagination). Could it be that you just see the the number of posts according to the respective admin setting? In addition, I just have been learned NOT to use query_posts. Why would you use it there anyway? Assuming, this is a … Read more

Removing blog page images

It sounds like you want to display only the excerpts on your blog home page. To do that, add is_home() to your conditional statement so that it looks like this: <?php if ( is_archive() || is_search() || is_home() ) : // Only display excerpts for archives, search and blog home page. ?> You can read … Read more