多人会把WordPress文章的固定链接设置为postname,也就是自己对每篇文章定义一个别名,作为文章的固定链接。这样使得文章链接更有意义,也有利于SEO优化。
而如果使用离线发布WordPress博客的时候,往往不能直接设置postname,不得不发表到博客后自行修改。
设置固定链接
首先肯定是要设置固定链接包含postname,如果没有这个需要,也就不需要看本文了。在设置-固定链接中将固定链接设置为自定义:/%postname%。
修改WordPress主题
在WordPress主题的functions.php中添加下面的代码。
// 文章自动别名
function post_auto_slug( $postid ) {
global $wpdb;
$sql = "SELECT post_title,post_name FROM $wpdb->posts WHERE ID = '$postid' AND post_type = 'post' AND post_parent = '0'";
$results = $wpdb->get_results($sql);
if( empty($results) ) {
return false;
}
$post_title = $results[0]->post_title;
$post_name = $results[0]->post_name;
$pos = strrpos( $post_title , '@@' );
if( $pos > 0 ) {
$slug = substr( $post_title, $pos + 2 );
if( ! empty( $slug ) ) {
// 创建唯一的postname
$post_name_check = true;
$suffix = 1;
$after = '';
$check_sql = "SELECT post_name FROM $wpdb->posts WHERE post_name = %s AND ID != '$postid' LIMIT 1";
while ( $post_name_check ) {
if ( $suffix > 1 ) {
$after = '-' . $suffix;
}
$post_name_check = $wpdb->get_var( $wpdb->prepare( $check_sql, $slug . $after ) );
$suffix++;
}
$post_name = $slug . $after;
}
$post_title = substr( $post_title, 0, $pos );
$sql = "UPDATE $wpdb->posts SET post_name = '$post_name', post_title = '$post_title' WHERE ID = '$postid'";
$wpdb->query($sql);
}
}
add_action( 'publish_post', 'post_auto_slug' );
发布文章
发布文章时,将文章的标题设置为标题@@postname形式,即可自动处理。如果文章标题中就需要包含@@字符,可以在上面的PHP代码中,将其改成其它分隔符。
前面的post_auto_slug方法的作用是,在文章发布前,将文章标题从@@符号截断为两部分,前面一半作为最终的标题,后面一半设置为postname,且对重复的postname自动添加后缀。例如已经有postname为test的文章,再次发送文章标题@@test,则自动改成test-2的形式。保证每篇文章的postname独一无二,这样才能正常通过网址访问。
1、文章版权归作者所有,未经允许请勿转载。
2、本站所有文章,如无特殊说明或标注,均为本站原创发布。任何在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们邮箱:526009505@qq.com进行处理。
3、咨询请联系QQ:526009505
2、本站所有文章,如无特殊说明或标注,均为本站原创发布。任何在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们邮箱:526009505@qq.com进行处理。
3、咨询请联系QQ:526009505