Anchor link to single.php
-
I am trying to do the following. From my home page when you click on a read more article I want it to load on the single.php page not from the top but at a specific anchor on the page. I am using this read more on the function.php
function new_excerpt_more( $more ) {
return ‘ ‘
. __(‘Read More’) . ‘‘;
}add_filter( ‘excerpt_more’, ‘new_excerpt_more’);
function custom_excerpt_length( $length ){
return 35;
}
add_filter( ‘excerpt_length’, ‘custom_excerpt_length’, 999 );
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Anchor link to single.php’ is closed to new replies.