razn8
Forum Replies Created
-
To modify the slideshow navigation bar, I have experimented with most of the Nextgen files to no avail. How would this be done?
Forum: Fixing WordPress
In reply to: Displaying an incrementing number next to each published postThis would be great, but it doesn’t appear to work in WordPress 3.0.1. Any ideas?
Forum: Fixing WordPress
In reply to: Pagination on external php pageHax: Thank you for your post. So you are saying that I can run a template file outside of the WordPress environment? If so, please direct me to some examples of how to accomplish this.
Rev. Voodoo: Thanks for the link, I will check it out.
Forum: Fixing WordPress
In reply to: Pagination on external php pageJust a static PHP page. I’m including the posts into the static page via the wp-load.php, and it works well as is. But I need to add the ‘next’ and ‘previous’ pagination links to the bottom of the page to load the next 4 posts from that category into the current static php page.
For example:
<?php next_posts_link( __( 'Older posts', 'twentyten' ) ); ?> <?php previous_posts_link( __( 'Newer posts', 'twentyten' ) ); ?>This adds the pagination links within the WP environment, but in an external environment I obviously need a custom query, for which I have had no luck with so far.
Forum: Fixing WordPress
In reply to: How do I make a page redirect to my static website?Using this method, how would you open the link in a new window, such as you would with the
onclick="window.open(this.href); return false;"ortarget="_blank"?