joecannes
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can I delete files in maint folderI just downloaaded the wordpress 3.8.1 zip folder, and there is a “maint” folder. Here is the list of default wordpress files/folders:
http://digwp.com/2012/05/complete-list-wordpress-files/
JC
Forum: Fixing WordPress
In reply to: Exlude Category from Custom Taxonomy from query Post loopThanks! That worked!
I modified it so I can I use a slug instead of an ID, so I changed in the secondary loop:
'field' => 'id', 'terms' => array( 151 ),TO
'field' => 'slug', 'terms' => 'senior-management',Thanks again!
JC
Forum: Fixing WordPress
In reply to: Exlude Category from Custom Taxonomy from query Post loopThanks! That worked!
Question, the slug is “senior-management”. So instead of using:
'terms' => array( 151 ),is there a way to modify it so I can look for the slug instead ID value?
'terms' => 'senior-management',(Sorry, I am not a backend coder, I know my logic here may be wrong)
Thanks!
Joe C.
Forum: Fixing WordPress
In reply to: how to still show Archived posts on index.php after month has passesThe default loop that comes with the twenty-ten theme
Forum: Fixing WordPress
In reply to: how to still show Archived posts on index.php after month has passesI used the default theme that comes with Wopdress 3.0.1, and modified it, so in my loop.php file, i am simply using this:
<div id="nav-above" class="navigation"> <div class="nav-previous"> <?php previous_posts_link('« Newer Entries', 0) ?> </div> <div class="nav-next"> <?php next_posts_link('Older Entries »', 0); ?> </div> <div class="clear"></div> </div>Forum: Fixing WordPress
In reply to: how-to get bloginfo working in an IF StatementThank you Alchymyth, that worked!