其他分享
首页 > 其他分享> > 惠州分销商城开发日记:wordpress 404页面模板

惠州分销商城开发日记:wordpress 404页面模板

作者:互联网

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8"/>
    <meta http-equiv="Cache-Control" content="no-transform"/>
	<meta http-equiv="Content-Language" content="zh-CN" />
	<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
    <title>对不起,页面未找到</title>
    <link rel="stylesheet" rev="stylesheet" href="<?php bloginfo('template_url');?>/static/css/404.css" type="text/css" media="all"/>
</head>
<body>
<div class="wrapper-page">
    <div class="page-ex">
        <h1>404!</h1>
        <h2>对不起,页面未找到</h2><br>
        <form name="search" method="get" action="<?php echo home_url(); ?>">
		    <input type="text" name="s" size="11" placeholder="找不到内容?尝试下我们的搜索吧!"> 
			<input type="submit" value="搜索">
		</form>
        <br>
        <a class="page-back" href="<?php echo home_url(); ?>"><i class="fa fa-angle-left"></i> 返回首页</a>
    </div>
</div>
</body>
</html>

在弄惠州分销商城时,找了个404模板,记录一下!

 

标签:分销商,404,未找到,wordpress,模板,css,页面
来源: https://blog.csdn.net/lintuxiao/article/details/120168270