graceunfolding
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Author List on sidebar doesn’t appearThanks scribu
that’s what I thought were my only options.
thanks for your imput and happy holidays!
Forum: Themes and Templates
In reply to: editing sidebar headingsWhat do you mean? Did you edit them on the widgets page?
Or did you try to edit them through sidebar.php ?Forum: Themes and Templates
In reply to: editing sidebar headingsIf you are using Widgets then some of the headings can be
changed by going to your admin then to appearence,
then widgets. Once there click on “Categories” and you
can change the heading. I don’t think they all can be
changed, but some can be.Forum: Themes and Templates
In reply to: Author List on sidebar doesn’t appearOkay I figured out half the problem. The authors wouldn’t show
up because I was the only author but I am the admin. By
default the admin isn’t added to the author list. So I made
it so the admin shows up as an author and added another author.So it works if I am not using widgets. If I am not using
widgets then I can put the list anywhere in the sidebar.
But if I am using widgets then it only works if I put it
before the widgets and I assume it would work after them too.Does anybody know a way to squeeze the author list between
widgets? That way I can have it exactly where I want it.The code I am using for the list is:
<li><h2>Authors</h2> <ul><?php wp_list_authors('exclude_admin=0&show_fullname=0&optioncount=1&hide_empty=0'); ?> </ul></li>thanks!
Forum: Themes and Templates
In reply to: Author List on sidebar doesn’t appearHere it is… as you can see I am using widgets. The code
below does not have the author tag in it as no matter
where I put it, it didn’t work.Even if I remove all the widgets the author tag doesn’t
work. Must be missing something obvious.Thanks
<?php /** * @package WordPress * @subpackage Default_Theme */ ?> <div id="sidebar"> <ul> <?php /* Widgetized sidebar, if you have the plugin installed. */ if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?> <li> <?php get_search_form(); ?> </li> <!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it. <li><h2>Author</h2> A little something about you, the author. Nothing lengthy, just an overview. </li> --> <?php if ( is_404() || is_category() || is_day() || is_month() || is_year() || is_search() || is_paged() ) { ?> <li> <?php /* If this is a 404 page */ if (is_404()) { ?> <?php /* If this is a category archive */ } elseif (is_category()) { ?> You are currently browsing the archives for the <?php single_cat_title(''); ?> category. <?php /* If this is a yearly archive */ } elseif (is_day()) { ?> You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives for the day <?php the_time('l, F jS, Y'); ?>. <?php /* If this is a monthly archive */ } elseif (is_month()) { ?> You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives for <?php the_time('F, Y'); ?>. <?php /* If this is a yearly archive */ } elseif (is_year()) { ?> You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives for the year <?php the_time('Y'); ?>. <?php /* If this is a monthly archive */ } elseif (is_search()) { ?> You have searched the <a href="<?php echo bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives for <strong>'<?php the_search_query(); ?>'</strong>. If you are unable to find anything in these search results, you can try one of these links. <?php /* If this is a monthly archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?> You are currently browsing the <a href="<?php echo bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives. <?php } ?> </li> <?php }?> <?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?> <li><h2>Archives</h2> <ul> <?php wp_get_archives('type=monthly'); ?> </ul> </li> <?php wp_list_categories('show_count=1&title_li=<h2>Categories</h2>'); ?> <?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?> <?php wp_list_bookmarks(); ?> <li><h2>Meta</h2> <ul> <?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li> <li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li> <li><a href="http://ww.wp.xz.cn/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li> <?php wp_meta(); ?> </ul> </li> <?php } ?> <?php endif; ?> </ul> </div>Forum: Themes and Templates
In reply to: Author tag works only on home pageThanks very much.
Here are the files I edited.
archive.php, index.php, single.php, search.php
Looks like I got it covered.
thanks again 🙂