adding esc_attr
This commit is contained in:
parent
30b302996d
commit
a3b293b741
|
@ -44,7 +44,7 @@
|
|||
<input type="hidden" name="order" value="<?php echo get_query_var( 'order' ); ?>" />
|
||||
<input type="hidden" name="tainacan_collections_viewmode" value="<?php echo get_query_var( 'tainacan_collections_viewmode' ); ?>" />
|
||||
<div class="input-group">
|
||||
<input class="form-control rounded-0" type="search" name="s" value="<?php echo get_query_var( 's' ); ?>" placeholder="<?php _e( 'Search collections', 'tainacan-interface' ); ?>" />
|
||||
<input class="form-control rounded-0" type="search" name="s" value="<?php echo get_query_var( 's' ); ?>" placeholder="<?php esc_attr_e( 'Search collections', 'tainacan-interface' ); ?>" />
|
||||
<span class="input-group-append">
|
||||
<button class="btn border border-left-0 rounded-0 bg-white text-midnight-blue" type="submit">
|
||||
<i class="mdi mdi-magnify" style="line-height: inherit;"></i>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
<div class="btn-group ml-auto">
|
||||
<form class="form-horizontal my-2 my-md-0 tainacan-search-form d-none d-md-block" [formGroup]="searchForm" role="form" (keyup.enter)="onSubmit()" action="<?php echo home_url( '/' ); ?>">
|
||||
<div class="input-group">
|
||||
<input type="text" name="s" placeholder="<?php _e( 'Search', 'tainacan-interface' ); ?>" class="form-control" formControlName="searchText" size="50">
|
||||
<input type="text" name="s" placeholder="<?php esc_attr_e( 'Search', 'tainacan-interface' ); ?>" class="form-control" formControlName="searchText" size="50">
|
||||
<span class="text-midnight-blue input-group-btn mdi mdi-magnify form-control-feedback"></span>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<form role="search" method="get" class="search-form" action="<?php echo home_url( '/' ); ?>">
|
||||
<div class="input-group border">
|
||||
<input class="form-control py-2 border-0" type="search" name="s" placeholder="<?php _e( 'Search', 'tainacan-interface' ); ?>" id="tainacan-search">
|
||||
<input class="form-control py-2 border-0" type="search" name="s" placeholder="<?php esc_attr_e( 'Search', 'tainacan-interface' ); ?>" id="tainacan-search">
|
||||
<span class="input-group-append d-none d-md-block">
|
||||
<button class="btn btn-outline-secondary border-0 border bg-white" type="submit">
|
||||
<i class="mdi mdi-magnify" style="line-height: inherit;"></i>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<div class="icons">
|
||||
<?php if ( true == get_theme_mod( 'tainacan_facebook_share', true ) ) : ?>
|
||||
<div class="rotater">
|
||||
<a href="http://www.facebook.com/sharer.php?u=<?php echo home_url( $wp->request ); ?>" target="_blank">
|
||||
<a href="http://www.facebook.com/sharer.php?u=<?php echo esc_url( home_url( $wp->request ) ); ?>" target="_blank">
|
||||
<div class="btn btn-icon">
|
||||
<i class="mdi mdi-facebook"></i>
|
||||
</div>
|
||||
|
@ -15,7 +15,7 @@
|
|||
<?php endif; ?>
|
||||
<?php if ( true == get_theme_mod( 'tainacan_google_share', true ) ) : ?>
|
||||
<div class="rotater">
|
||||
<a href="https://plus.google.com/share?url=<?php echo home_url( $wp->request ); ?>" target="_blank">
|
||||
<a href="https://plus.google.com/share?url=<?php echo esc_url( home_url( $wp->request ) ); ?>" target="_blank">
|
||||
<div class="btn btn-icon">
|
||||
<i class="mdi mdi-google-plus"></i>
|
||||
</div>
|
||||
|
@ -24,7 +24,7 @@
|
|||
<?php endif; ?>
|
||||
<?php if ( true == get_theme_mod( 'tainacan_twitter_share', true ) && get_option( 'tainacan_twitter_user' ) ) : ?>
|
||||
<div class="rotater">
|
||||
<a href="http://twitter.com/share?url=<?php echo home_url( $wp->request ); ?>&text=<?php the_title_attribute(); ?>&via=<?php echo esc_attr( get_option( 'tainacan_twitter_user', '' ) ); ?>" target="_blank">
|
||||
<a href="http://twitter.com/share?url=<?php echo esc_url( home_url( $wp->request ) ); ?>&text=<?php the_title_attribute(); ?>&via=<?php echo esc_attr( get_option( 'tainacan_twitter_user', '' ) ); ?>" target="_blank">
|
||||
<div class="btn btn-icon">
|
||||
<i class="mdi mdi-twitter"></i>
|
||||
</div>
|
||||
|
|
|
@ -4,8 +4,8 @@ nav.menu-belowheader #menubelowHeader ul.dropdown-menu {
|
|||
min-width: 10rem !important;
|
||||
}';
|
||||
|
||||
$background_color = get_post_meta( tainacan_get_collection_id(), 'tainacan_theme_collection_background_color', true );
|
||||
$text_color = get_post_meta( tainacan_get_collection_id(), 'tainacan_theme_collection_color', true );
|
||||
$background_color = esc_attr( get_post_meta( tainacan_get_collection_id(), 'tainacan_theme_collection_background_color', true ) );
|
||||
$text_color = esc_attr( get_post_meta( tainacan_get_collection_id(), 'tainacan_theme_collection_color', true ) );
|
||||
if ( $background_color ) {
|
||||
echo ".t-bg-collection {
|
||||
background-color: $background_color !important;
|
||||
|
|
Loading…
Reference in New Issue