Ryan Fitzer
Forum Replies Created
-
Forum: Themes and Templates
In reply to: New Theme : Misty LookVery clean and simple. Great job. Two things I think might help:
1. Remove the bottom border on the selected tab in the top navigation.
2. Style the headings of the sidebar a liitle more.
But even without those it’s looks great.
And both CSS and The markup validate!
Forum: Plugins
In reply to: Keep categories from showing up on homepageYou’ll have to specify a category for “main blog” posts.
Forum: Plugins
In reply to: Keep categories from showing up on homepageThis is how I accomplished this type of thing.
Forum: Themes and Templates
In reply to: Display Posts by AuthorThis page is for you.
Forum: Fixing WordPress
In reply to: Can I make a page not clickable?Could you specify exactly what functionality you are looking for? There my be a better way to take care of your needs. I don’t quite understand why you would need a page to not be linked.
Forum: Fixing WordPress
In reply to: Export/save entries and comments somehow?To get the detailed info go to:
http://validator.w3.org/ and plug in the address of any site you wish to validate.
Forum: Plugins
In reply to: Need a plugin? – taking a requestGood point but I would not like the user to have to write any code. This also wouldn’t help if I had a rule for something like this:
body#bigpost #sidebar {
display:none;
}This would enable a user to hide blocks of content whenever they needed. Now I understand that it could be possible to keep a layout fluid enough to accomodate knocking blocks down when the preceding block is a certain size but this gives much more control to the non-technical author. Thanks anyway.
Forum: Fixing WordPress
In reply to: Export/save entries and comments somehow?Ya gotta do whatcha gotta do.
Here’s the loop from index.php.
<div id="content"><div id="home">
<h2 class="pagetitle">Current Exhibitions</h2>
<?php query_posts('cat=1&showposts=2'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="entry">
<div class="postthumb"><a href="<?php the_permalink(); ?>"><?php post_image('', true, true); ?></a></div>
<div class="posttext">
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php the_excerpt(); ?>
</div><div class="clear"></div>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<h3 class="center">Not Found</h3>
<p class="center">Sorry, but you are looking for something that isn't here.</p><?php endif; ?>
</div>
I couldn’t really explain the perameters for you without going back and reading the link again (I have a few things I have to go take care of). But with this use of the arguments I have it set to never use a default image (the posts in this category always have images). I understand your pain though, the documentation is a little confusing, but keep going through it and it will eventualy make sense. It’s a great plugin, that’s for sure.
As far as the image is concerned, it’s from a local photographer an shows an arm with bullets tucked under a cloth wrap.
Good luck. And if you come up with a great way of using it, post back here.
Forum: Plugins
In reply to: i want this pluginThis is where the ads come from and the page that explains how.
Forum: Themes and Templates
In reply to: [Solution] Link Categories in Blix Theme for WordPressGood job. That Blix theme can be a tuffy to alter.
Forum: Fixing WordPress
In reply to: Export/save entries and comments somehow?You can do this by backing up your wordpress database.
This thread should help:
Forum: Plugins
In reply to: Need a plugin? – taking a requestI have a simple (I think) idea for a plugin:
Have a dropdown menu on the write post page that could change the id of the body tag on the index page everytime you publish a post. What I’m thinking about is being able to change your front page layout (by swtiching out the body tag to reference a different CSS rule) depending on the content of each post (of course, the index page would only show 1 post at a time to accomodate this). Then one could use something like
<?php variable_id (); ?>as the id on their index.php body tag. Sound interesting? This would support being able to change ones layout depending on the importance of the post.I do the same thing in my sidebar. Here’s how:
<div id="sidebar"><?php
$posts = get_posts("category=2" . "&numberposts=5");
if( $posts ) :
?><div class="recent-posts">
<h4><a href="index.php?cat=2">Recent News »</a></h4>
<ul>
<?php foreach( $posts as $post ) : setup_postdata( $post ); ?>
<?php
$even_odd = ( 'odd' != $even_odd ) ? 'odd' : '';
?>
<li class="<?php echo $even_odd; ?>"><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?></ul>
</div>
<?php endif; ?>
<?php
$posts = get_posts("category=3" . "&numberposts=5");
if( $posts ) :
?><div class="recent-posts">
<h4><a href="index.php?cat=3">Recent Events »</a></h4>
<ul>
<?php foreach( $posts as $post ) : setup_postdata( $post ); ?>
<?php
$even_odd = ( 'odd' != $even_odd ) ? 'odd' : '';
?>
<li class="<?php echo $even_odd; ?>"><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?></ul>
</div>
<?php endif; ?>
<h4><a href="?page_id=31">Links »</a></h4>
<ul>
<?php get_links('1', '<li>', '</li>', ' ', FALSE, 'rating', TRUE, TRUE, 15, TRUE); ?>
</ul></div>
The bits about
$even_oddare from http://markjaquith.wordpress.com/2006/06/20/alternating-rows-in-php/
It gives the<li>element an alternating clas of “odd” so as to style them with stripes or however you’d like.Forum: Everything else WordPress
In reply to: Moving existing posts with blogAlong with the suggestions above, to backup your database you have to first activate the database plugin in your plugins panel. Then go to manage > backup.