**Úprava textu odkazu**
``
**Doplnění obrázku**
/—code php
.moretext {
width: 100px;
height: 45px;
background:url(/images/ilustrace.gif) no-repeat right middle;
padding: 10px 50px 15px 5px}
\—
**Skok na začátek textu**
Standardně odkaz vede na pokračování textu, nacházející se za `` odkazem, toto chování lze změnit umístěním následujícího filtru do *functions.php*
/—code php
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‘);
\—
Lze použít i plugin:
**More Link Modifier**
„http://wordpress.org/extend/plugins/more-link-modifier/“:http://wordpress.org/extend/plugins/more-link-modifier/
A simple plugin that allows you to modify the link that is displayed when you use the feature. Also lets you remove the anchor link to turn off the jumping behaviour. You can also choose to have the more link open in a new window/tab.
You can choose to have just plain text, or also include the post’s title. If you chose to include the title, you can limit the number of characters/words that are displayed in the title. Also allows you to add ellipsis (…) to the title if it has been truncated. All the options can be found in „More Link“ tab under „Options“ in admin page.
„Více k úpravám `` odkazu »“:http://codex.wordpress.org/Customizing_the_Read_More