如何将页面的slug添加到wordpress小部件中的链接

问题描述 投票:1回答:1

我一直在寻找一个多小时,所以我真的希望有人可以帮助我。

我有一个包含链接的小部件,例如

<a href="/form/fill-in-form">Fill in our form</a>

但是我想在页面slug中添加链接(所以我可以在表单上看到它)。例如,如果用户在我的页面上mysite.com/listing/redcar我希望他们看到:例如

<a href="/form/fill-in-form/?myparameter=SLUG">Fill in our form</a>

要么

<a href="/form/fill-in-form/?myparameter=redcar">Fill in our form</a>

但无论我做什么,我都无法让slu to进入Widget中的URL

我试过了

<a href="/form/fill-in-form/?myparameter=<?php the_permalink(); ?>">Fill in our form</a> 

还有很多其他的事情,但我无法得到任何工作。

有什么想法吗?

php wordpress url widget slug
1个回答
1
投票

使用全球来获得后期slu ..

<?php 
    global $post;
    $post_slug = $post->post_name;
?>
<a href="/form/fill-in-form/?myparameter=<?php echo $post_slug; ?>">Fill in our form</a> 

你也可以通过post id获得slug,这样做

<?php
$post_id = POST_ID; //replace it with post id
$post_data = get_post($post_id); 
$post_slug = $post_data->post_name;
?> 
<a href="/form/fill-in-form/?myparameter=<?php echo $post_slug; ?>">Fill in our form</a> 
© www.soinside.com 2019 - 2024. All rights reserved.