axelav
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: On gallery, no link on FILEVery interested in the answer to the above question. I’m struggling to figure out how to get the links removed from these images.
Forum: Fixing WordPress
In reply to: 300 Character limitOye I sorted it out. The number the first function returns is words, not characters.
Forum: Fixing WordPress
In reply to: 300 Character limitHi xdesi,
I followed your instructions but it doesn’t seem to have changed anything. Here’s my functions.php file:
<?php function new_excerpt_length($length) { return 125; } function excerpt_ellipse($text) { return str_replace('[...]', ' <a href="'.get_permalink().'">[More...]</a>', $text); } add_filter('the_excerpt', 'excerpt_ellipse'); add_filter('excerpt_length', 'new_excerpt_length'); ?>And this is what I have in my index.php file:
<?php while (have_posts()) : the_post(); ?> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <h4><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h4> <small><?php the_time('F jS, Y g:ia') ?></small> <div class="news-entry"> <?php the_excerpt(); ?> </div> </div> <?php endwhile; ?>Thanks!
Forum: Requests and Feedback
In reply to: [Plugin: WP-TwitterSearch] AwesomeHey,
The contact form on your site (http://paperkilledrock.com/contact/) doesn’t seem to be working… I’ve got a quick question.
I really want to use WP-Twittersearch but am having some issues. 1) I don’t see any link for settings (http://screencast.com/t/o0GKjlvyo) and 2) am getting this error (http://screencast.com/t/HeXVsGde1tgi). I saw your mention regarding PHP 4 but I am running PHP 5.2.9. Any suggestions?
Thanks!