sixfootstudio
Forum Replies Created
-
Forum: Installing WordPress
In reply to: How to move from one server to anotherWell…I left this post and went to bed and by some miracle of Worpress, woke up this morning to find that the links are working! I don’t know if Apache servers work the same way, but normally on Windows boxes you can reset IIS.
Is there a chance this is the same thing that could have happened here, that there was a delay in the reset process for everything to take effect?
Thanks t-p, the link you sent was the one that I was following from. I only wish that WP would make it a little simpler to move a WP installation, it is nowhere near this complicated with CMS systems like DotNetNuke and Sitefinity.
Cheers
Forum: Plugins
In reply to: Vote It UpAnyone maybe have an answer to this?
Forum: Fixing WordPress
In reply to: Exclude all categories except chosen categories from posts pageManaged to figure it out! Thanks for the help Dan!
Forum: Fixing WordPress
In reply to: Exclude all categories except chosen categories from posts pageHi Dan,
The site is not live yet but here’s the snippet of code for the loop.
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
query_posts( ‘cat=-1’ );
<div <?php post_class(); ?>>
<h2>“><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php if ( !is_singular() && get_the_title() == ” ) : ?>
<!–“>(more…)–>
<?php endif; ?>
<?php if ( is_singular() ) : ?>
<div class=”pagination”><?php wp_link_pages(); ?></div>
<?php endif; ?>
<div class=”clear”> </div>
</div><!– post_class() –>
<?php if ( is_singular() ) : ?>
<div class=”meta”>
</div><!– meta –>
<?php comments_template(); ?>
<?php endif; ?>
<?php endwhile; else: ?>
<div class=”hentry”><h2>Sorry, the page you requested cannot be found</h2></div>
<?php endif; ?>
<?php if ( is_active_sidebar( ‘widgets’ ) ) : ?>
<div class=”widgets”><?php dynamic_sidebar( ‘widgets’ ); ?></div>
<?php endif; ?>
<?php if ( is_singular() || is_404() ) : ?><?php else : ?>
<div class=”left”><?php next_posts_link( ‘« Older posts’ ); ?></div>
<div class=”right”><?php previous_posts_link( ‘Newer posts »’ ); ?></div>
<?php $key_1_values = get_post_meta($post->ID, ‘buy-now’,’true’); ?>
<?php endif; ?>Thanks ??
Forum: Fixing WordPress
In reply to: Exclude all categories except chosen categories from posts pageHi Guys.
I’ve tried this now and when I run the page, all I get is
query_posts( ‘cat=-1’ ); at every iteration of the posts.I’ve added the query_posts(); just before the loop as suggested in that post but think I may be missing something.
Thanks!
Forum: Fixing WordPress
In reply to: Exclude all categories except chosen categories from posts pageThanks Dan,
I am going to have a look into this now and let you know how I get on ??
Cheers!