V
V
Vladimir Kulikov2020-07-22 13:38:15
WordPress
Vladimir Kulikov, 2020-07-22 13:38:15

How to get only the link in get_next_posts_link?

Hello, how to get only a link without tags and other nonsense in get_next_posts_link()?)

Answer the question

In order to leave comments, you need to log in

1 answer(s)
K
KingAnton, 2020-07-22
@KingAnton

Parse the regular expression and pull out the url
. And you can get the url prev/next in this way:

$prev = get_permalink(get_adjacent_post(false,'',false));
$next = get_permalink(get_adjacent_post(false,'',true));

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question