Post title as link parameter

时间:2019-12-07 作者:Mike

我在主题文件中有一个。php在我博客的每篇文章中都会显示一个链接(example.com/cars/?aff=)。我就是这样整合的:

$html .="<a id=\'test\' rel=\'nofollow\' href=\'https://example.com/cars/?aff=\' target=\'_blank\'>";
我想把帖子的标题自动写在后面?aff=

例如:https://example.com/cars/?aff=POSTTITLE

我如何做到这一点?已在Google上搜索allot,但找不到任何内容。

很高兴能得到帮助!

当做

1 个回复
SO网友:Elgoots

我想这就是你想要实现的目标?

$html .="<a id=\'test\' rel=\'nofollow\' href=\'https://example.com/cars/?aff=\'". echo get_the_title( $post_id ) ." target=\'_blank\'>";

相关推荐

Custom URl parameter

我有Wp博客,需要在分类页面上接收一个自定义参数,以过滤像我的规则这样的帖子。例如:http://mysite.com/category/teste?myvar=ABC如何从URL获取myvar?我在网上尝试了很多例子,但没有一个适合分类页面。谢谢