您好,登錄后才能下訂單哦!
Wordpress如何設置公益404頁面,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
Wordpress主題會自帶404頁面,如果需要替換成自定義的需要修改404.php頁面
1.找到404頁面設置的地方
一般在網站根目錄下wp-yisu/themes/你的主題下,我的主題是sela,所以具體位置是wp-億速/themes/sela/404.php
2.備份原頁面修改成新的
備份原404.php頁面并修改如下:
<?php header("HTTP/1.0 404 Not Found"); include '404.html'; die(); ?>
其中404.html內容如下:
<!DOCTYPE HTML> <html> <head> <meta charset="UTF-8" /> <title>公益404</title> </head> <body> <script type="text/javascript" src="//qzonestyle.gtimg.cn/qzone/hybrid/app/404/search_children.js" charset="utf-8" homePageUrl="https://minminmsn.com" homePageName="回到我的主頁"></script> </body> </html>
3.測試訪問效果
隨意訪問一個不存在的鏈接如minminmsn.com/404,希望她早日回家!
4.補充搜索結果找不到頁時設置404公益頁面
修改wp-content/themes/sela/search.php將其中
<?php else : ?> <?php get_template_part( 'content', 'none' ); ?> <?php endif; ?>
改為
<?php else : ?> <?php header("HTTP/1.0 404 Not Found"); include '404.html'; die(); ?> <?php endif; ?>
完整內容如下:
<?php /** * The template for displaying Search Results pages. * * @package Sela */ get_header(); ?> <section id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <?php if ( have_posts() ) : ?> <header class="page-header"> <h2 class="page-title"><?php printf( __( 'Search Results for: %s', 'sela' ), '<span>' . get_search_query() . '</span>' ); ?></h2> </header><!-- .page-header --> <?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', 'search' ); ?> <?php endwhile; ?> <?php sela_content_nav( 'nav-below' ); ?> <?php else : ?> <?php header("HTTP/1.0 404 Not Found"); include '404.html'; die(); ?> <?php endif; ?> </main><!-- #main --> </section><!-- #primary --> <?php get_sidebar(); ?> <?php get_footer(); ?>
關于Wordpress如何設置騰訊公益404頁面問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。