Answer the question
In order to leave comments, you need to log in
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
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 questionAsk a Question
731 491 924 answers to any question