Tagged Questions
0
votes
1answer
61 views
Why is the output of a call to the_excerpt different when the call seems to be identical?
Ok I've been asked to fix a problem on a website that is a bit weird. The index page (template-magazine.php) here, Has this bit of code:
<?php get_template_part('loop'); ?>
to produce a ...
1
vote
1answer
319 views
Add $more_link_text parameter to the_excerpt()
this filter is on the Wordpress Codex …
add_filter('excerpt_more', 'new_excerpt_more');
function new_excerpt_more($more) {
global $post;
return '<a class="moretag" href="'. ...