Is there any way to get to functions.php with WordPress.com blog?
-
I’ve been having issues with my “read more” opening my post page and jumping to the middle of the page – which I now understand is what my theme is telling it to do.
I’ve looked around on the internet and apparently if I can insert this:
function remove_more_jump_link($link) {
$offset = strpos($link, ‘#more-‘);
if ($offset) {
$end = strpos($link, ‘”‘,$offset);
}
if ($end) {
$link = substr_replace($link, ”, $offset, $end-$offset);
}
return $link;
}
add_filter(‘the_content_more_link’, ‘remove_more_jump_link’);into my functions.php file that jump won’t happen anymore. I don’t have a self-hosted blog though. Is there anything I can do to still make this happen?
The blog I need help with is: (visible only to logged in users)
-
-
- The topic ‘Is there any way to get to functions.php with WordPress.com blog?’ is closed to new replies.