开发者

How do I add custom url in wordpress?

开发者 https://www.devze.com 2023-01-07 14:38 出处:网络
I just insta开发者_如何学Pythonlled a new plguin in wordpress, and found out that the plugin uses a custom url like /?m=value. How do i add custom url?? Do I call it a custom url or ??

I just insta开发者_如何学Pythonlled a new plguin in wordpress, and found out that the plugin uses a custom url like /?m=value. How do i add custom url?? Do I call it a custom url or ??

Thanks, Moon


If you are trying to get some parameters through URLs, you can pass it like http://myurl.com/page/?param1=123&param2=123&param3=123.. and get then in the php with the $_GET.

$myvar1 = $_GET['param1']; $myvar2 = $_GET['param2']; $myvar3 = $_GET['param3'];

0

精彩评论

暂无评论...
验证码 换一张
取 消