hello, i want to change placeholder ‘search’ text to ‘i’m looking for…’ text
i try to change…
<form method="get" id="searchform" class="hide-input" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<input type="text" name="s" id="s" placeholder="<?php esc_attr_e( 'Search...', ETHEME_DOMAIN ); ?>" />
<input type="hidden" name="post_type" value="post" />
<input type="submit" value="<?php esc_attr_e( 'Go', ETHEME_DOMAIN ); ?>" class="button" />
<div class="clear"></div>
</form>
to
<form method="get" id="searchform" class="hide-input" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<input type="text" name="s" id="s" placeholder="<?php esc_attr_e( 'i'm looking for...', ETHEME_DOMAIN ); ?>" />
<input type="hidden" name="post_type" value="post" />
<input type="submit" value="<?php esc_attr_e( 'Go', ETHEME_DOMAIN ); ?>" class="button" />
<div class="clear"></div>
</form>
code but it is not working. can you please get a look into this…