Joshua Sigar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comments in seperate div not workingConceptually,
-- START LOOP 1 --
display content
-- END LOOP 1 --SAVE QUERY for LOOP 1-- START LOOP 2 --
do something
-- END LOOP 2 ---- START LOOP 3 --
do something
-- END LOOP 3 --RESTORE and RESET QUERY for LOOP 1
-- START LOOP 1 --
display comment
-- END LOOP 1 --
Forum: Fixing WordPress
In reply to: Case of the Randomly Disappearing Header ImageIt always loads for me. Maybe your browser is messed up. Is it up-to-date? Possibly some firefox extensions?
By the way, the animation cracked me up
http://www.mojosity.com/2006/03/10/animationmentor-the-begining/Forum: Plugins
In reply to: Make Post Headline Link To External Site<quote>Page Links To is a plugin that allows you to make certain WordPress pages or posts link to a URI of your choosing, instead of their WordPress page or post URI.</quote>
I don’t use this plugin, but am pretty sure it will do what the original poster wanted. If that’s not true, oh, well.
Forum: Plugins
In reply to: Make Post Headline Link To External SiteA plugin for that: http://txfx.net/code/wordpress/page-links-to/
Forum: Themes and Templates
In reply to: New templateI would space out the items at the very top.
I would add left & right margin/padding for the content.
The post text is too black (?)Forum: Themes and Templates
In reply to: listing previous postsActually, the following is a better method than yours.
$posts = get_posts( "category=1&numberposts=5&offset=1″ );Forum: Plugins
In reply to: Store Category number with postMy intention was just to show only the latest post in one specific category.
http://wordpress.org/support/topic/58700?replies=3#post-316042Forum: Themes and Templates
In reply to: listing previous postsSay “Main Entries” has category id of 2
<?php $posts = get_posts( "category=2&numberposts=5″ ); ?>
<?php if( $posts ) : ?><div id="latestMainEntries">
<h3>Main Entries</h3>
<ul>
<?php foreach( $posts as $post ) : setup_postdata( $post ); ?><li><span class="date"><?php the_time('F j'); ?></span> <a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></li><?php endforeach; ?>
</ul>
</div><?php endif; ?>Forum: Plugins
In reply to: Store Category number with postThe category field was moved to it’s own table to allow multiple categories for one Post.
What did you want to accomplish? Showing one latest Post of a specific category? Or simply showing one latest Post, regardless its category?
Forum: Themes and Templates
In reply to: Two-line header textAdd the following in your CSS file
#header h1 {
width: 400px;
}Or you could set blog title as “Riverside Rambles” and blog description as “Larry Ayers’ Weblog.”
Or you could just hardcode the following in your template file.
Riverside Rambles:<br />Larry Ayers' WeblogForum: Plugins
In reply to: Static section at top to contain text and linksJust modify the template file directly. Normally you’d just add the content to index.php, but I’m not sure of your page setup and where you want the static content to appear.
Forum: Installing WordPress
In reply to: Update from 1.2 to 2.0 requires 1.5.x? Where is it?To get 1.5…
http://static.wordpress.org/archive/Forum: Fixing WordPress
In reply to: Inserting a loop (or posts) in a page…Forum: Installing WordPress
In reply to: Am Getting A Programmer To Help Me – What Should I Look Out ForHow do you want to configure the website?
Forum: Plugins
In reply to: How to apply a filter to the entire page?So, here is the basic concept how you could do it.
if (/* we're in one of intended pages */)
{
ob_start('alphaoide_filter_content');
}Then somewhere you’d have the filter function definition.
function alphaoide_filter_content($content)
{
...
$content = /* filtered_content */
...
return $content;
}
Make sure you measure how this will affect the page load time.