大家好(&A);多亏了Eric,
我终于找到了一个有点不雅观的变通解决方案:事实上,我遇到的问题是建立链接到我的“会员单页”的URL。。。我最终要做的是将永久链接重建到所述页面,如下所示:
$author_name=str_replace(\' \',\'-\',strtolower(sanitize_user(get_the_author_meta(\'display_name\'))));
这将给我建立链接所需的slug:
<a href="<?php echo get_site_url();?>/membre/<?php echo $author_name; ?>"><?php echo get_the_author_meta(\'display_name\');?></a>
谢谢你读我的书!