V
V
vox_termin2021-09-03 17:08:03
WordPress
vox_termin, 2021-09-03 17:08:03

How to add question mark and equal to wordpress link?

Hey!

I'm trying to save the link like this:

/pages/video.php?video=123

WordPress saves the link like this:

/pages/video.phpvideo123

How do I add signs? and = to the wordpress link.

I am using Permalimk Manager Pro plugin.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Artem Zolin, 2021-09-03
@artzolin

Use the functionadd_query_arg()

$current_link = '/pages/video.php';
$new_url = add_query_arg( [ 'video' => '123' ], $current_link );

var_dump($new_url);

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question