How to customize the colors within a stylesheet using a WordPress setting

I would recommend a color option. Generally, a color option just loads a separate style sheet. E.g., loading the style-blue.css style sheet would include all those elements you wanted to be blue. (You would load this in addition to your main style sheet.) This is how many themes work, so this a proven approach. This … Read more

WordPress Post Order

While a common request, WP is quite opinionated that taxonomies are strictly a grouping mechanism and not meant for meaningful order. You can achieve this literally, but it takes quite a bit of custom SQL inserted into query logic. Alternately you could consider splitting your query for your specific requirements. Such as querying posts with … Read more