shadow
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Single.php post content not showingThe plugin elimination looks like the next step.
Forum: Fixing WordPress
In reply to: Single.php post content not showingCan you postwhat code you have between the following?
<div class="entry">What do you have in here?
<span class="slashdigglicious">Forum: Fixing WordPress
In reply to: Extra Blogroll, where does it live!?!?!?Start by adding your links to your blogroll and adding that code to your sidebar. That will show you how it works in a basic fashion. Then you can start adding link categories and adding or moving your links around . The same code will still pull all the categories of links into the sidebar.
If you then need to make further changes you can look into the more advanced elements of the wp_list_bookmarks function by going to the Codex and having a play with it all.
http://codex.wordpress.org/Template_Tags/wp_list_bookmarks
But for now, I’m late for work… π
Forum: Fixing WordPress
In reply to: What constitutes a “support question”?Check the other thread…
Forum: Fixing WordPress
In reply to: Extra Blogroll, where does it live!?!?!?In this case, change your theme sidebar.php file to permission setting 777
Once you have made all the changes, set it back to its original permission level.
Forum: Fixing WordPress
In reply to: What constitutes a “support question”?Go ahead and ask:)
Forum: Fixing WordPress
In reply to: Extra Blogroll, where does it live!?!?!?If you have permissions set, you can access it via Admin – Presentation – Theme Editor
It will need to go in your theme sidebar.php file.
Forum: Fixing WordPress
In reply to: Extra Blogroll, where does it live!?!?!?Theoretically this should work…
<?php wp_list_bookmarks('title_li=&categorize=0'); ?>Forum: Fixing WordPress
In reply to: How To Make a Page MenuAdd a call to the pages. Something like this may help:
<?php wp_list_pages('depth=1&title_li='); ?>Forum: Themes and Templates
In reply to: Group entries by categoryCall each category separately and place whatever title you want above [Change the category ID and number of posts to suit each time]
<?php $posts = get_posts( "category=24&numberposts=1" ); ?> <?php if( $posts ) : ?> <?php foreach( $posts as $post ) : setup_postdata( $post ); ?> <h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2><h3><?php the_category(',') ?><?php edit_post_link('...', '', ''); ?></h3> <?php the_content(__('>> full article')); ?> <?php endforeach; ?> <?php endif; ?>Forum: Themes and Templates
In reply to: Image in Header???You should have something similar to
<?php bloginfo('description'); ?>in your header – just remove that altogether.Forum: Themes and Templates
In reply to: Div height backgroundThanks Root. And I must be psychic – somehow I knew you would answer this question more appropriately then I ever could π
Forum: Your WordPress
In reply to: Please visit this wordpress work and suggestions welcome …I second Whooami – exactly the same…
Forum: Installing WordPress
In reply to: WP 2.2.2 working with BLANK db! Where are my files?Is this a continuation of the problem here? http://wordpress.org/support/topic/135413?replies=6
Email me please and I will give you a hand….
shadow12 gmail
Forum: Fixing WordPress
In reply to: I can’t post!Released now…