• DONATE to NULLED!
    Вы можете помочь Форуму и команде, поддержать финансово.
    starwanderer - модератор этого раздела будет Вам благодарен!

Помощь Читать полностью...

Статус
В этой теме нельзя размещать новые ответы.

Skorp1oN

Мастер
Регистрация
16 Дек 2007
Сообщения
387
Реакции
31
Здравствуйте! Возникла такая проблема:
Когда вставляю тег "Далее", то в категории если я нажимаю на "Читать полностью..." в какой-то статье, то в браузере опера и IE меня перекидывает в самый низ страницы, в мозиле нормально - под начало статьи.
Вопрос: Где редактируется редирект этого тега? Хочу просто сделать чтобы при нажатии, был переход на начало страницу (как обычная ссылка).
Заранее большое спасибо за помощь!
 
ответ тут

By default Wordpress post listing will embed with #more tag. If you do not like the #more tag like me, you can remove the #more tag using wordpress filter. In case you do not know what is #more tag, here’s the explanation. Whenever user click on the “read more” link at the post listing, it will redirect user to the single post page and auto focus on the anchor tag. I dun find this very useful but caused of confusion to my readers.
To remove the #more in Wordpress listing, follow the steps below:-

* Login to your wordpress
* Go to Appearance -> Editor
* Click on functions.php at the right sidebar
* Copy and paste the code below, and click “Update File”
Код:
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');
Now the #more jump at the post listing should have removed
 
Статус
В этой теме нельзя размещать новые ответы.
Назад
Сверху