anathema
Forum Replies Created
-
Thank you!
Forum: Developing with WordPress
In reply to: Custom RSS with the_excerptHow should I change the code to display the excerpt then?
Are robots counted with the Google Analytics version?
Do that many people use those types of security features? Because most of my hits do not have a referral.
I just tested one of the links and the referrer showed up.
However, this same link shows up without a referral all the time. As do a few others.
I know for sure that some are not direct hits on a link because they only exist on a single page on my site. That page is not https, either.
Forum: Fixing WordPress
In reply to: Large File Upload TimeoutI have a dedicated virtual. I can change my settings to whatever I want and have.
Forum: Fixing WordPress
In reply to: Moving 2.0.2 and Cachethe whole folder will be recreated?
yeah, i was going to upgrade too, but i want to move it first.
Forum: Fixing WordPress
In reply to: Category PageI am aware of the list_cats, but what kind of page would I use? I mean I guess I could just create my own new page manually with all the appropriate database connections. Is that the best way though?
Forum: Fixing WordPress
In reply to: Link to entire archive?Of course I do not want ALL the post to load on a single page. I was thinking mor along the lines of limiting the number of posts and having ‘prev’ and ‘next’ links.
Forum: Plugins
In reply to: affiliate plugin?I would be willing to pool money if people are down. We could use http://www.fundable.org/
Forum: Plugins
In reply to: affiliate plugin?Draconic – I plan on rewarding people by other means such as prizes.
I am pretty sure such a plugin does not exist. There are tons of affiliate apps / scripts out there, but most of them are full of features that I do not require. The spreadfirefox system is exactly the kind of thing I am looking for. In case you do not know what I am talking about, check out the affiliate stats in the right hand column on http://www.spreadfirefox.com
Since spreadfirefox uses Drupal they may be using this module.
http://drupal.org/project/userpointsAnyway, any WordPress Plugin developers willing to take this on? I may be willing to pay for its development
Forum: Fixing WordPress
In reply to: how to display WP content outside of WPI am sure there is a better way. Like i said, i don’t know anything about php. I was simply impressed that i got it to work.
I should point out, if you have not gathered this yourself, my intentions with this method. I simply want to display the latest post, say in a ‘news’ column or div, and thus the user can choose to read more, and be taken to the actual blog.
i would be curious to know how to set the number of visible posts. with this method i can get the latest, or revert back to using the loop and get them all. it would be nice to display the 5 most recent, or any # for that matter.
Forum: Fixing WordPress
In reply to: how to display WP content outside of WPha… figured it out. of course just inserting the loop gives you all the posts… duh! but i played around with the loop code and figured out how to limit it to just the latest post. this was actually remarkable for me because i don’t know bleep about php. so… for all those who happen to stumble upon this thread… this is what the original loop looks like in 1.5
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<h2 id="post-<?php the_ID(); ?>">" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></h2>
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small><div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div><p class="postmetadata">Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit','','|'); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>
<!--
<?php trackback_rdf(); ?>
-->
</div><?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php posts_nav_link('','','« Previous Entries') ?></div>
<div class="alignright"><?php posts_nav_link('','Next Entries »','') ?></div>
</div><?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center"><?php _e("Sorry, but you are looking for something that isn't here."); ?>
<?php include (TEMPLATEPATH . "/searchform.php"); ?><?php endif; ?>
change the first line to:
<?php if (have_posts()) : the_post(); ?>
and remove these two lines:
<?php while (have_posts()) : the_post(); ?>
<?php endwhile; ?>
you could also remove other stuff like the navigation… just take it out.
Forum: Fixing WordPress
In reply to: how to display WP content outside of WPAll i really want to do is display the latest post… do i just add:
<?php
require(‘blog/wp-blog-header.php’);
?>to the top of the page and then put the loop where i want the post to appear?