floda_reltih
Forum Replies Created
-
Forum: Plugins
In reply to: A Good WYSISWG for 1.5anyone?
Forum: Plugins
In reply to: A Good WYSISWG for 1.5btw where did the google-highlite.php go? I’ve been looking for something similar to make the search results on my 1.5 website a bit userfiendly but I cant find this plugin anymore.
Forum: Requests and Feedback
In reply to: […] from categories not a hyperlink?Thx for the reply kafka, but could you plz eleborate on that, what should I change in single.php? if i have this:
<div class=”entry single”>
<h2>“><?php the_title(); ?></h2>
<p class=”info”>
<?php if ($post->comment_status == “open”) ?>
<em class=”date”><?php the_time(‘F jS, Y’) ?><!– at <?php the_time(‘h:ia’) ?>–>
<!–<em class=”author”><?php the_author(); ?>–>
<?php edit_post_link(‘Edit’,'<span class=”editlink”>’,'</span>’); ?><?php the_content();?>
<p id=”filedunder”>Entry filed under: <?php the_category(‘,’); ?></div>
thx in advance
Forum: Requests and Feedback
In reply to: […] from categories not a hyperlink?Hi there, sorry for adding a new “theme” to this thread, but I have a little problem with my index.php This is nothing new, just the normal excerpt link, however, when I click on the Continue Reading link it opens the full text, BUT without the excerpt text, so if I use 1-2 paragraphs of a text as an excerpt – those paragraphs dont appear in the full text version. Is it possible to make it work as the <!– more –> does – opens the full text, from the place where the tag has been inserted, but displaying the full text, not cutting out everything before the tag? thx
<h2>” title=”Permalink”><?php the_title(); ?></h2>
<?php ($post->post_excerpt != “”)? the_excerpt() : the_content(); ?>
<p class=”info”><?php if ($post->post_excerpt != “”) { ?>” class=”more”>Continue Reading<?php } ?>Forum: Fixing WordPress
In reply to: Need help with the_excerpt()Got my hands on this post http://wordpress.org/support/topic/24679/rss/
now this part
<h2>” title=”Permalink”><?php the_title(); ?></h2><?php ($post->post_excerpt != “”)? the_excerpt() : the_content(); ?>
<p class=”info”><?php if ($post->post_excerpt != “”) { ?>” class=”more”>Continue Reading<?php } ?>
works fine, but I have one problem – when I click on the Continue Reading link it gives me the full text, EXCLUDING the excerpt part! But i want it to display the whole post. Is it possible to fix?
BTW my wd.php still says <?php the_content(); ?>
do I have to change it to something like <?php if(is_single()) { ?>
<?php the_content(); ?>
<?php } else { ?>
<?php the_excerpt(); ?>
<?php } ?>??
well when Im using this validator http://www.htmlhelp.com/cgi-bin/validate.cgi?url=http://yoursitehere.com it actually tries to validate it.