aboutsummaryrefslogtreecommitdiff
path: root/srcs/wordpress/wp-content/themes/twentysixteen/template-parts/content-search.php
diff options
context:
space:
mode:
Diffstat (limited to 'srcs/wordpress/wp-content/themes/twentysixteen/template-parts/content-search.php')
-rw-r--r--srcs/wordpress/wp-content/themes/twentysixteen/template-parts/content-search.php53
1 files changed, 0 insertions, 53 deletions
diff --git a/srcs/wordpress/wp-content/themes/twentysixteen/template-parts/content-search.php b/srcs/wordpress/wp-content/themes/twentysixteen/template-parts/content-search.php
deleted file mode 100644
index 6a912eb..0000000
--- a/srcs/wordpress/wp-content/themes/twentysixteen/template-parts/content-search.php
+++ /dev/null
@@ -1,53 +0,0 @@
-<?php
-/**
- * The template part for displaying results in search pages
- *
- * @package WordPress
- * @subpackage Twenty_Sixteen
- * @since Twenty Sixteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <header class="entry-header">
- <?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
- </header><!-- .entry-header -->
-
- <?php twentysixteen_post_thumbnail(); ?>
-
- <?php twentysixteen_excerpt(); ?>
-
- <?php if ( 'post' === get_post_type() ) : ?>
-
- <footer class="entry-footer">
- <?php twentysixteen_entry_meta(); ?>
- <?php
- edit_post_link(
- sprintf(
- /* translators: %s: Post title. */
- __( 'Edit<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ),
- get_the_title()
- ),
- '<span class="edit-link">',
- '</span>'
- );
- ?>
- </footer><!-- .entry-footer -->
-
- <?php else : ?>
-
- <?php
- edit_post_link(
- sprintf(
- /* translators: %s: Post title. */
- __( 'Edit<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ),
- get_the_title()
- ),
- '<footer class="entry-footer"><span class="edit-link">',
- '</span></footer><!-- .entry-footer -->'
- );
- ?>
-
- <?php endif; ?>
-</article><!-- #post-<?php the_ID(); ?> -->
-