如何自定义wordpress文章的固定链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何自定义wordpress文章的固定链接相关的知识,希望对你有一定的参考价值。

  ①登录wordpress后台,填入网站管理员账号、密码



  ②点击后台设置栏目下的“固定链接”按钮



  ③wordpress提供了6种链接形式共我们选择



  ④在设置前,我们必须先知道seo链接的原则。不要让日期、分类、中文出现在链接中,同时链接尽量不要太长



  ⑤设置的方式很多,我这里建议用文章ID作为文章链接,文章ID是独一无二的,ID后添加.html伪静态:/%post_id%.html



  ⑥保存更新后,固定链接完成,可以点入网站的文章看看是否设置成功,是数字.html结尾的链接说明设计成功啦


参考技术A 点击后台设置栏目下的“固定链接”按钮

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.
  1. <?php
  2. $postID = $post->ID;
  3. //print_r($product_meta);
  4.  
  5. // (thumbnail, medium, large or full) or a 2-item array
  6. // representing width and height in pixels, e.g. array(32,32)
  7. // OR the custom config'd name of image size
  8. $image_size = 'prods-large'; // the image size to be shown initially (smaller version)
  9. $image_size_lg = 'large'; // the image size to link to (large version)
  10.  
  11. $images = get_children(array(
  12. 'post_parent' => $postID,
  13. 'post_type' => 'attachment',
  14. 'numberposts' => -1,
  15. 'order' => 'ASC',
  16. 'orderby' => 'menu_order',
  17. //'exclude' => get_post_thumbnail_id(), -- uncomment to exclude post thumbnail
  18. 'post_mime_type' => 'image',
  19. )
  20. );
  21.  
  22. //print_r($images);
  23. if($images) {
  24.  
  25. echo '<div class="prod-imgs">';
  26.  
  27. foreach( $images as $image ) {
  28.  
  29. $attachment_id = $image->ID;
  30.  
  31. // get the 'large' size image's URL
  32. $image_attributes = wp_get_attachment_image_src( $attachment_id, 'large' ); // returns an array - [0] is the URL of the image 'large' size
  33. $largeSizeURL = $image_attributes[0];
  34.  
  35. echo '<a class="attachment-' . $attachment_id . ' popup-with-zoom-anim img-link" href="' . $largeSizeURL . '">';
  36. echo wp_get_attachment_image($attachment_id, $image_size);
  37. echo '</a>';
  38.  
  39. }
  40. echo '</div>';
  41. }
  42. ?>

以上是关于如何自定义wordpress文章的固定链接的主要内容,如果未能解决你的问题,请参考以下文章

WordPress固定链接设置的几种方法

如何获取在 Wordpress 中按类别过滤的自定义帖子类型的永久链接?

微慕小程序专业版支持WordPress自定义短代码

Wordpress以自定义大小插入文章附件链接到自定义大小

Wordpress多个类别显示与自定义链接

通过自定义日期字段的 Wordpress 自定义存档页面链接