avoidriskyfood
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Setting up a dev environment locallyah, actually I’d rather not say as it’s a fairly large client and and I’m sure my boss would be not very happy if this post turns up in a google search 😉
can we just say fci.com? (it isn’t but let’s just pretend)
Forum: Networking WordPress
In reply to: Setting up a dev environment locallylocalhost/fr/fci
Forum: Installing WordPress
In reply to: I need two theme on the same web siteIt sounds like you just need two different templates. most themes will have a couple different templates so you can display certain content content differently (ie: an image gallery page would like different than an about us page). these are actually fairly easy for a developer to create but would probably be a stretch for someone who has never coded before.
I’m sure there are people a lot smarter than me on these boards that might have a better solution but I would recommend looking maybe just use different headers. I’ve never used this plugin but you could try https://wordpress.org/extend/plugins/dynamic-headers/
Forum: Fixing WordPress
In reply to: [WP-Paginate] wp-paginate – Archives (just 2011) listing backwardsOkay I see whats going on. this site uses the blog for two things press releases and links to pdf files. but we only show the press releases in the archives. so all those blank pages are actually filled with pdf’s they just arent displayed. I’d assume that I should be able to create a custom query to display only press releases. Thanks for your time esmi.
Forum: Fixing WordPress
In reply to: Removing crap li tagsThanks! went with a combination of both:
$list = wp_list_pages( 'echo=0&title_li=' );The above will output the pages in li’s so I needed to add a ul in my template:
$list = wp_list_pages( 'echo=0&title_li=' ); $list = preg_replace('/title=\"(.*?)\"/','',$list); echo '<ul id="nav">' . $list . '</ul>';for the sidebar, I think I’m just going to make another custom widget for that.
Thanks again.