如何在推文中使用Wordpress Shortlink(仅限帖子ID)

时间:2012-05-15 06:26:07

标签: wordpress url twitter

场景:我博客上帖子的网址和标题通常很长。每当我或其他任何人发布帖子时,我都没有找到任何空间来添加主题标签或引用的转发文本。我不想缩短帖子的标题,所以另一个选择是缩短网址。为此,我想以这种格式从wordpress post获取短链接

http://mydomain.com/?p=(post ID)

你能告诉我怎么做吗?

2 个答案:

答案 0 :(得分:1)

您可以转到设置 - >固定链接并将其设置为“默认”(如果您愿意,则设置为“数字”),然后调用

<?php the_permalink() ?>

在您的“推文”链接中。

或者你可以使用它:Twitter Friendly Links WordPress Plugin

答案 1 :(得分:1)

使用wp get shortlink

根据数字ID返回网址,即http://example.com/?p=1234

https://codex.wordpress.org/Function_Reference/wp_get_shortlink

用法 <?php $short_link = wp_get_shortlink(); ?> 要么 <?php echo wp_get_shortlink(); ?>

源文件 wp_get_shortlink()位于wp-includes / link-template.php。