문제

I am a rails programmer basically who is looking to move towards wordpress for a project which involves conversion of paper based magazine / newspaper to an online version. I have developed rails app with HTML themes before and understand the HTML themes basically are concerned with front end logic. How wordpress themes are in that respect?? They are a bit expensive but do they have any back end functionality as well. I need some help understanding if i am thinking in the right manner. The theme has homepage which has multiple posts from multiple categories. Will i be able to put post with some categories and they will automatically appear as they shown in the homepage or do i have to manually select which post goes where. Regards

도움이 되었습니까?

해결책

Each post in WP can be tagged and categorized. The posts can then be pulled from the database by various criteria - author, category, tag, date etc.

Read more here : http://codex.wordpress.org/Class_Reference/WP_Query

You could assign various columns on your homepage to display posts from different categories.

There are also different kinds of posts (post formats) such as image, video, quote etc. - which could all be displayed differently, depending on the theme (template).

Posts, post formats, categories, tags - all of these are a part of the standard WordPress install and are independent from the theme. The theme simply takes advantage of these features.

다른 팁

Wordpress is essentially just like any other CMS. You can make it do pretty much anything you want it to do. If you want all the posts to display on the homepage, you can. If you only want specific posts to display you can do that too with either categories or tags. All you need to know is some PHP and check out the Wordpress Codex for all the functions available.

If you are just wanting to buy a theme then obviously don't get the flexibility unless you hack the theme a bit.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top