如何自定义wordpress文章的固定链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何自定义wordpress文章的固定链接相关的知识,希望对你有一定的参考价值。
①登录wordpress后台,填入网站管理员账号、密码
②点击后台设置栏目下的“固定链接”按钮
③wordpress提供了6种链接形式共我们选择
④在设置前,我们必须先知道seo链接的原则。不要让日期、分类、中文出现在链接中,同时链接尽量不要太长
⑤设置的方式很多,我这里建议用文章ID作为文章链接,文章ID是独一无二的,ID后添加.html伪静态:/%post_id%.html
⑥保存更新后,固定链接完成,可以点入网站的文章看看是否设置成功,是数字.html结尾的链接说明设计成功啦
wordpress提供了6种链接形式共我们选择
在设置前,我们必须先知道seo链接的原则。不要让日期、分类、中文出现在链接中,同时链接尽量不要太长
设置的方式很多,我这里建议用文章ID作为文章链接,文章ID是独一无二的,ID后添加.html伪静态:/%post_id%.html
保存更新后,固定链接完成,可以点入网站的文章看看是否设置成功,是数字.html结尾的链接说明设计成功啦
Wordpress以自定义大小插入文章附件链接到自定义大小
To insert custom loop of post attachments as images (at core or custom size) linked not to full size image but custom-configured (or core) size.
<?php $postID = $post->ID; //print_r($product_meta); // (thumbnail, medium, large or full) or a 2-item array // representing width and height in pixels, e.g. array(32,32) // OR the custom config'd name of image size $image_size = 'prods-large'; // the image size to be shown initially (smaller version) $image_size_lg = 'large'; // the image size to link to (large version) 'post_parent' => $postID, 'post_type' => 'attachment', 'numberposts' => -1, 'order' => 'ASC', 'orderby' => 'menu_order', //'exclude' => get_post_thumbnail_id(), -- uncomment to exclude post thumbnail 'post_mime_type' => 'image', ) ); //print_r($images); if($images) { echo '<div class="prod-imgs">'; foreach( $images as $image ) { $attachment_id = $image->ID; // get the 'large' size image's URL $image_attributes = wp_get_attachment_image_src( $attachment_id, 'large' ); // returns an array - [0] is the URL of the image 'large' size $largeSizeURL = $image_attributes[0]; echo '<a class="attachment-' . $attachment_id . ' popup-with-zoom-anim img-link" href="' . $largeSizeURL . '">'; echo wp_get_attachment_image($attachment_id, $image_size); echo '</a>'; } echo '</div>'; } ?>
以上是关于如何自定义wordpress文章的固定链接的主要内容,如果未能解决你的问题,请参考以下文章