WordPress 后台主页显示设置增加文章选择

WordPress 默认后台阅读设置主页显示只可以选择页面不能选择文章,通过本文的一段代码可以增加选择文章。将代码添加到当前主题函数模板 functions.php 中:

  1. // 阅读设置主页显示可以选择文章
  2. class CustomFrontPage {
  3. private static $instance;
  4. public static function get_instance() {
  5. return isset( self::$instance ) ? self::$instance : new self();
  6. }
  7. private function __construct() {
  8. self::$instance = $this;
  9. if ( is_admin() ) {
  10. add_filter( 'wp_dropdown_pages', array( $this, 'wp_dropdown_pages' ) );
  11. } else {
  12. add_action( 'pre_get_posts', array( $this, 'pre_get_posts' ) );
  13. add_action( 'template_redirect', array( $this, 'template_redirect' ) );
  14. }
  15. }
  16. public function wp_dropdown_pages( $output ) {
  17. global $pagenow;
  18. if ( ( 'options-reading.php' === $pagenow || 'customize.php' === $pagenow ) && preg_match( '#page_on_front#', $output ) ) {
  19. $output = $this->posts_dropdown();
  20. }
  21. return $output;
  22. }
  23. protected function posts_dropdown( $post_type = 'any' ) {
  24. $output = '';
  25. if ( 'any' !== $post_type && ! post_type_exists( $post_type ) ) {
  26. $post_type = 'page';
  27. }
  28. $posts = get_posts(
  29. array(
  30. 'posts_per_page' => - 1,
  31. 'orderby' => 'title',
  32. 'order' => 'ASC',
  33. 'post_type' => $post_type,
  34. 'post_status' => 'publish',
  35. )
  36. );
  37. $front_page_id = get_option( 'page_on_front' );
  38. $select = __( 'Select' );
  39. $output .= '<select name="page_on_front" id="page_on_front">';
  40. $output .= "<option value=\"0\">&mdash; {$select} &mdash;</option>";
  41. foreach ( $posts as $post ) {
  42. $selected = selected( $front_page_id, $post->ID, false );
  43. $post_type_obj = get_post_type_object( $post->post_type );
  44. $output .= "<option value=\"{$post->ID}\"{$selected}>{$post->post_title} ({$post_type_obj->labels->singular_name})</option>";
  45. }
  46. $output .= '</select>';
  47. return $output;
  48. }
  49. public function pre_get_posts( $query ) {
  50. if ( $query->is_main_query() ) {
  51. $post_type = $query->get( 'post_type' );
  52. $page_id = $query->get( 'page_id' );
  53. if ( empty( $post_type ) && ! empty( $page_id ) ) {
  54. $query->set( 'post_type', get_post_type( $page_id ) );
  55. }
  56. }
  57. }
  58. public function template_redirect() {
  59. global $post;
  60. if ( is_singular() && ! is_front_page() && absint( get_option( 'page_on_front' ) ) === $post->ID ) {
  61. wp_safe_redirect( site_url(), 301 );
  62. }
  63. }
  64. }
  65. CustomFrontPage::get_instance();

之后进入后台 → 阅读设置 → 您的主页显示 → 一个静态页面 → 主页,发现下拉列表中可以选择某篇文章作为首页了。

溫馨提示:

文章標題:WordPress 后台主页显示设置增加文章选择

文章連結:https://www.wuyanshuo.cn/798.html

更新時間:2022年4月30日

1、本站所有資源均不添加推廣檔案或浮水印,壓縮包內若有廣告檔案和浮水印請勿輕易相信。

2、本站資源均為兩層壓縮,第一層7z(尾碼若為wys,請自行修改為7z)有解壓密碼; 第二層zip或cbz,無解壓密碼,可直接使用漫畫類軟件程式查看; 詳情可參攷解壓教程

3、本站大部分內容均收集於網絡! 若內容侵犯到您的權益,請發送郵件至:admin#wysacg.top我們將第一時間處理! 資源所需價格並非資源售賣價格,是收集、整理、編輯詳情以及本站運營的適當補貼,並且本站不提供任何免費技術支援。 所有資源僅限於參攷和學習,版權歸原作者所有!

给TA打赏
共{{data.count}}人
人已打赏
建站教程

WordPress 导航菜单添加自定义文字信息

2022-4-30 14:05:17

建站教程

WordPress 自定义链接插件 Custom Permalinks

2022-4-30 17:09:29

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索