我正在尝试缩短wp\\u get\\u短链接。我想删除不必要的“http://”。
我尝试了常规的php方式(Replace(“http:/”,“”));但WordPress似乎有不同的替代方式?
以下是我正在尝试的:
$post_url = wp_get_shortlink(Replace("http://"," " ));
$post_title = get_the_title();
随后:
<a href="https://twitter.com/share?url=**$post_url**&text=$post_title" onclick="window.open(this.href,\'popupwindow\',\'width=800,height=300,left=200,top=5,scrollbars,toolbar=0,resizable\'); return false;" target="_blank">
谢谢