mirror of
https://github.com/mashirozx/sakura.git
synced 2024-11-01 04:28:12 +08:00
49 lines
1.6 KiB
PHP
49 lines
1.6 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Template part for displaying a message that posts cannot be found.
|
||
|
*
|
||
|
* @link https://codex.wordpress.org/Template_Hierarchy
|
||
|
*
|
||
|
* @package Akina
|
||
|
*/
|
||
|
|
||
|
?>
|
||
|
|
||
|
<section class="no-results not-found">
|
||
|
<header class="page-header">
|
||
|
<h1 class="page-title"><?php esc_html_e( '没有找到任何东西!', 'akina' ); ?></h1>
|
||
|
</header><!-- .page-header -->
|
||
|
|
||
|
<div class="page-content">
|
||
|
<?php
|
||
|
if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
|
||
|
|
||
|
<p><?php printf( wp_kses( __( '准备好发布你的第一篇文章了么? <a href="%1$s">点击这里开始</a>.', 'akina' ), array( 'a' => array( 'href' => array() ) ) ), esc_url( admin_url( 'post-new.php' ) ) ); ?></p>
|
||
|
|
||
|
<?php elseif ( is_search() ) : ?>
|
||
|
<div class="sorry">
|
||
|
<p><?php esc_html_e( '没有找到你想要的,看看其他的吧。', 'akina' ); ?></p>
|
||
|
<div class="sorry-inner">
|
||
|
<ul class="search-no-reasults">
|
||
|
<?php
|
||
|
$result = $wpdb->get_results("SELECT ID,post_title FROM $wpdb->posts where post_status='publish' and post_type='post' ORDER BY ID DESC LIMIT 0 , 20");
|
||
|
foreach ($result as $post) {
|
||
|
setup_postdata($post);
|
||
|
$postid = $post->ID;
|
||
|
$title = $post->post_title;
|
||
|
?>
|
||
|
<li><a href="<?php echo get_permalink($postid); ?>" title="<?php echo $title ?>"><?php echo $title ?></a> </li>
|
||
|
<?php } ?>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<?php else : ?>
|
||
|
|
||
|
<p><?php esc_html_e( '我们似乎没有找到你想要的东西. 或许你可以搜索一下试试.', 'akina' ); ?></p>
|
||
|
<?php
|
||
|
|
||
|
endif; ?>
|
||
|
</div><!-- .page-content -->
|
||
|
</section><!-- .no-results -->
|