twenty eleven theme has no functions.php file?
-
I’m using the twenty eleven theme on several sites. I wanted to and add the below. I got to looking and none of the twenty eleven sites have a functions.php.
To add code below do I just make a functions.php file and then add code to it?Prevent Page Scroll When Clicking the More Link
By default, clicking the .more-link anchor opens the web document and scrolls the page to section of the document containing the named anchor (#more-000). This section is where writers choose to place the <!–more–> tag within a post type.
Users can prevent the scroll by filtering the content more link with a simple regular expression.
function remove_more_link_scroll( $link ) {
$link = preg_replace( ‘|#more-[0-9]+|’, ”, $link );
return $link;
}
add_filter( ‘the_content_more_link’, ‘remove_more_link_scroll’ );
Simply add the above code to the theme’s functions.php file and the named anchors are no more.
- The topic ‘twenty eleven theme has no functions.php file?’ is closed to new replies.