The WordPress way is to store all content in the database, and the theme only supplies the layout and styles.
]]>I’m looking to not download any premade plugins. The theme, ideally, is to be as custom as possible.
If you don’t mind me asking, if it isn’t too vague, what is the general pattern in supplying content used to sell a service on the homepage? This is data that needs to be managed in the backend by other people yet I am not sure what the industry standard is when it comes to accomplishing this with style. As far as I am concerned just slapping a post in the homepage can look boring. How would I style it?
]]>The theme, ideally, is to be as custom as possible.
What you consider ideal is different from most. What you consider custom could in fact be common. What you consider is a theme’s job might be very different from the WordPress way of doing things.
There’s nothing wrong (and many advantages) with using plugins for functionality. It really doesn’t belong in a theme, which should just format the HTML and that’s it. It should not decide what is on any of the pages or what any of the URLs are.
If you want dynamic content, you should use a plugin to provide that. The plugin author will have done all the work to get it written, tested, supported, updated.
Even if you decide you don’t want to use a plugin, you can read the plugin code to see how it is done.
If you think a particular page needs additional styles, the styles should go in the page, or use classes in the HTML and put the styles for the classes in Additional CSS. (Actually, it’s better to use a plugin like Custom CSS so that it will still be there if you switch themes.)
]]>Thank you ??
]]>