avoryfaucette
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: wordpress all functionsThough I’m not sure what’s going on with the phpdoc site, in the meantime you might try http://codex.wordpress.org/Function_Reference for many (but not all) of the core functions.
Forum: Fixing WordPress
In reply to: removing link on featured sliderMy mistake, Sue, I misread. As noted above, the theme’s support forum is probably a better bet. You might want to try taking out the link (a href) code syntax in the snippet you pasted and instead use the get_the_title() function. Unfortunately I don’t have this theme installed so I can’t test that suggestion for you.
Forum: Fixing WordPress
In reply to: Category advice?Eric,
The examples you give here would be appropriate for categories, rather than tags. Keep in mind that you can use a custom menu for your navigation and rename the categories for menu purposes, which avoids the issue of duplication or needing to have a more complicated query. For example, let’s say you have a category called “Epcot.” This could be a parent category of child categories “Epcot Dining,” “Epcot Attractions,” etc. etc. When you create your menu, you can set it up so that the children are listed in a submenu of Epcot, and then rename them to be simply “Dining,” “Attractions,” etc. in the menu. When you do a post about a restaurant at Epcot, you would check the category boxes for “Epcot” and “Epcot Dining.” If you do it this way, clicking on “Epcot” would give the reader ALL your reviews about Epcot, and if they hover over “Epcot” and click “Dining,” they’ll only see posts in the “Epcot Dining” category.
This approach will result in a lot of categories, but I think it’s appropriate for what you’re describing, and it won’t feel “cluttered” for the reader given the submenu strategy. Normally a post only has a few categories (1-3 is a good guideline) but can have lots of tags. So for example, you might want to tag a restaurant review that’s in the “Epcot Dining” category “Mexican,” “inexpensive,” and “family.” The advantage of this approach is that you could implement an advanced search feature in the future that allows a reader to search for all posts tagged Mexican in the Magic Kingdom or all posts tagged “inexpensive” and “family” in any of the parks.
Let me know if this makes sense.
Forum: Fixing WordPress
In reply to: How to get rid of white spaces below the bottom menu bar?This is a commercial theme not supported by this forum. It looks like the theme has a support forum here:
That said, look for #middle.full_width in your style.css file and note that you have a 65px top padding. You can adjust that padding to a smaller number to eliminate some of the white space.
Forum: Fixing WordPress
In reply to: WordPress Internal ClockI’m not sure exactly what you’re looking for, but if you need code for grabbing the current time, you can find it here:
http://codex.wordpress.org/Function_Reference/current_time
You may also want the function for grabbing the time of the current post:
http://codex.wordpress.org/Template_Tags/get_the_time
The time functions default to UTC, or you can use a parameter for the blog’s time zone.
Forum: Fixing WordPress
In reply to: Same aspect ration for thumbnails ???You should post this question in the theme-specific forum here:
http://wordpress.org/support/theme/modularity-lite
Do keep in mind that Modularity Lite is a pretty old theme, so you may not get a response.
Forum: Fixing WordPress
In reply to: removing link on featured sliderSorry, but this forum doesn’t support commercial themes; http://codex.wordpress.org/Forum_Welcome#Commercial_Products
You can try contacting the theme developer for help.
You may also want to look at this:
http://codex.wordpress.org/Function_Reference/get_the_titleAt a glance, I think you may be able to fix your problem by using get_the_title() rather than get_permalink().