Questions about wordpress.

iLatvian

Registered Member
Joined
May 5, 2015
Messages
51
Reaction score
10
Hello guys this might be the wrong section but i didnt know where to post it.

So i came across problem i got wordpress site and i got home page and 5 more pages. Just for example. home | cooking | health| money | contact|

Problem is when i post something it shows in home page all my recent posts but how do i make for example i write about cooking so i want it to appear there and same time in home page? How do i make that happen?
 
Which theme are you using?
Usually you can make a widget on your home page and from there assign posts with certain categories or tags to be displayed on the home page.
 
Im using simple catch. What kinda widget?
 
Use category to identify the different Cateogry heading. Then go to menu and set these categories as menu. This should solve your issue.
 
Use Category. If you're writing posts about Cooking, create a category, for example: Cooking. Then categorize yours cooking posts to the Cooking category. In the menu, you don't need to create special page for Cooking, just choose the Cooking category.
 
Use separate categories and tags for your content and make the post in each categories. All category contents are shown on home page also.
 
Go in reader settings and select the page you want to appear as a home page. I hope this will help you.
 
The easiest way to add another page is to use the categories you would like as a menu. This can be found under the menu option. Then just input your categories.
 
If you want to show your specific category post on the home page, then you should use this code in index.php. If you have knowledge about coding, then edit it. Here is the code:

Code:
<?php   if (is_home()) {
      query_posts("cat=3");
   }
?>

You will get more info in there: http://codex.wordpress.org/Template_Tags/query_posts
 
Back
Top