I tried adding a frontpage.php file to the content directory, but that wasn't being loaded. Now, I've added the following snippet to assure I'm getting a context of 'frontpage':
add_filter('cfct_context', 'scompt_front_page_context');
function scompt_front_page_context($context) {
if( is_front_page() )
return 'frontpage';
...
I'm currently using the Carrington Blog theme, and it has a few things that I would like to remove from static pages. I would like to remove the "Posted in Uncategorized.", "By Thomas Owens – August 13, 2009" (where Thomas Owens is the author and August 13, 2009 is the date of posting), and "Comments Off" from all static pages (since I ...
Having a bit of trouble using jQuery plugins (Superfish, jQuery UI, etc) using Wordpress. Everything works fine in my plain non-Wordpress site, but Wordpress seems to conflict with JQuery. There must be some way to get around this.
Also, I'm using Carrington Framework, if that makes a difference.
In Safari's web inspector, I get these...
I have a site with a bunch of categories. On each category archive
page, I'd like to show the category description in the sidebar.
I know I can create a sidebar for each category in sidebar/:
cat-category1.php
cat-category2.php
But that seems to be a bit overkill.
Is there a way to have a
'generic category archive sidebar,' -- on...