Boa tarde pessoal, ja fiz de tudo para encontrar o texto que fica dentro do input do search http://prntscr.com/jaxzep o template é esse http://demo.sparklewpthemes.com/sparklestore/shop/
Queria encontrar para poder alterar porque esta em inglês, se alguem tiver alguma ideia de onde fica ficarei muito grato.
Ja procurei em todo lugar esse codgo e nao Achei o conteudo dentro da pagina search.php é esse
<?php
/**
* The template for displaying search results pages.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
*
* @package Sparkle_Store
*/
get_header(); ?>
<?php do_action( 'sparklestore-breadcrumbs' ); ?>
<div class="inner_page">
<div class="container">
<div class="row">
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
if ( have_posts() ) :
/* Start the Loop */
while ( have_posts() ) : the_post();
/**
* Run the loop for the search to output the results.
* If you want to overload this in a child theme then include a file
* called content-search.php and that will be used instead.
*/
get_template_part( 'template-parts/content', 'search' );
endwhile;
the_posts_pagination(
array(
'prev_text' => esc_html__( 'Prev', 'sparklestore' ),
'next_text' => esc_html__( 'Next', 'sparklestore' ),
)
);
else :
get_template_part( 'template-parts/content', 'none' );
endif; ?>
</main>
</div>
<?php get_sidebar(); ?>
</div>
</div>
</div>
<?php get_footer();
Dentro da pasta "template-parts/content" tem esse codgo, ja procurei em tudo e nao Achei
<?php
/**
* Template part for displaying posts.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Sparkle_Store
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?> itemtype="http://schema.org/BlogPosting" itemtype="http://schema.org/BlogPosting">
<div class="post-container">
<?php
if ( has_post_thumbnail() ) {
?>
<div class="post-img has-img ">
<a title="<?php the_title(); ?>" href="<?php the_permalink(); ?>">
<figure>
<?php the_post_thumbnail() ?>
</figure>
</a>
<div class="blogdate">
<time class="entry-date updated">
<?php the_time( 'F d Y' ) ?>
</time>
</div>
</div>
<?php } ?>
<div class="post-detail-container">
<div class="title">
<h2 class="entry-title">
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
</h2>
</div>
<ul class="list-info">
<li><i class="fa fa-user"></i> <?php the_author(); ?></li>
<li><i class="fa fa-folder-open"></i> <?php the_category(', '); ?></li>
<li><i class="fa fa-comment"></i> <?php comments_popup_link( esc_html__( '0 Comment', 'sparklestore' ), esc_html__( '1 Comment', 'sparklestore' ), esc_html__( '% Comments', 'sparklestore' ), esc_html__( 'Comments are Closed', 'sparklestore' ) ); ?></li>
<li><i class="fa fa-tag"></i> <?php the_tags( ' ' ); ?></li>
</ul>
<div class="blogdesc">
<?php the_excerpt(); ?>
</div>
<div class="blog-readmore">
<a href="<?php the_permalink(); ?>">
<?php esc_html_e('Read More','sparklestore'); ?>
</a>
</div>
</div>
</div>
</article><!-- #post-## -->