FrankieB
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to Remove Blogroll Header TextWhen I left the field & slug blank WordPress said “category not updated”.
I’ll go see if I can find the Links sidebar widget and use that. If not I’ll just hard code the links into the sidebar (definitely not what I want to do).
Forum: Fixing WordPress
In reply to: How to Remove Blogroll Header TextI commented out everything in the sidebar and just put the code in the sidebar…as long as that categorize= is in there the whole thing bombs.
Forum: Fixing WordPress
In reply to: How to Remove Blogroll Header TextI’d just like to note that as long as I remove categorize=0 the links will show, along with the header. Once I put categorize=0 in there the entire code fails.
Forum: Fixing WordPress
In reply to: How to Remove Blogroll Header TextWell, here is the code for the entire sidebar
</div> <div id="sidebar"> <?php // enable list podcast entries drop down menu query_posts('showposts=3&cat=10'); ?> <h2 class="typeface-js" style="font-family: 'WhoopAss'">Podcasts</h2> <ul id="recent-podcasts"> <?php $postslist = get_posts('numberposts=3&order=DESC&orderby=post_date&category=7'); foreach ($postslist as $post) : setup_postdata($post); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> <li><a href="<?php echo get_category_link($category_id=7) ;?>" class="view-all-podcasts">--View All Podcasts--</a></li> </ul> <?php if ( function_exists('wp_tag_cloud') ) : ?> <h2 class="typeface-js" style="font-family: 'WhoopAss'">Tags</h2> <div id="tags"> <?php wp_tag_cloud('smallest=85&largest=220&unit=%&orderby=count'); ?> </div> <?php endif; ?> <h2 class="typeface-js" style="font-family: 'WhoopAss'">Links</h2> <div id="links"> <?php wp_list_bookmarks('categorize=0&title_li='); ?> </div> </div>
Forum: Fixing WordPress
In reply to: How to Remove Blogroll Header TextInsanely helpful…
I know its valid I am just wondering in what instance it would not work. It doesn’t print anything inside of my div tag. It acts as if the code isn’t even there. VERY frustrating.
Forum: Fixing WordPress
In reply to: How to Remove Blogroll Header TextIt would, except the site isn’t online. I’m developing on a separate machine that has WAMP installed on it.
Forum: Fixing WordPress
In reply to: Denying Access under constructionYes I just found that and installed that plugin. Was coming back to respond.
Thank you anyway.
Forum: Fixing WordPress
In reply to: Denying Access under constructionSo, can nobody help? If this isn’t possible a simple answer stating so would be enough to satisfy me.