Merge pull request #140 from stef-k/escape-template-variables
Escape template variables
This commit is contained in:
commit
06dc66a392
|
@ -20,7 +20,7 @@ $sidebar_pos = get_theme_mod('understrap_sidebar_position');
|
||||||
|
|
||||||
<div class="wrapper" id="archive-wrapper">
|
<div class="wrapper" id="archive-wrapper">
|
||||||
|
|
||||||
<div class="<?php echo $container?>" id="content" tabindex="-1">
|
<div class="<?php echo esc_html( $container ); ?>" id="content" tabindex="-1">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
|
|
10
author.php
10
author.php
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
<div class="wrapper" id="author-wrapper">
|
<div class="wrapper" id="author-wrapper">
|
||||||
|
|
||||||
<div class="<?php echo $container?>" id="content" tabindex="-1">
|
<div class="<?php echo esc_html( $container ); ?>" id="content" tabindex="-1">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@
|
||||||
$curauth = (isset($_GET['author_name'])) ? get_user_by('slug', $author_name) : get_userdata(intval($author));
|
$curauth = (isset($_GET['author_name'])) ? get_user_by('slug', $author_name) : get_userdata(intval($author));
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<h1><?php esc_html_e( 'About:', 'understrap' ); ?> <?php echo $curauth->nickname; ?></h1>
|
<h1><?php esc_html_e( 'About:', 'understrap' ); ?> <?php echo esc_html( $curauth->nickname ); ?></h1>
|
||||||
|
|
||||||
<?php if ( ! empty( $curauth->ID ) ) : ?>
|
<?php if ( ! empty( $curauth->ID ) ) : ?>
|
||||||
<?php echo get_avatar($curauth->ID); ?>
|
<?php echo get_avatar($curauth->ID); ?>
|
||||||
|
@ -38,16 +38,16 @@
|
||||||
<dl>
|
<dl>
|
||||||
<?php if ( ! empty( $curauth->user_url ) ) : ?>
|
<?php if ( ! empty( $curauth->user_url ) ) : ?>
|
||||||
<dt><?php esc_html_e( 'Website', 'understrap' ); ?></dt>
|
<dt><?php esc_html_e( 'Website', 'understrap' ); ?></dt>
|
||||||
<dd><a href="<?php echo $curauth->user_url; ?>"><?php echo $curauth->user_url; ?></a></dd>
|
<dd><a href="<?php echo esc_html( $curauth->user_url ); ?>"><?php echo esc_html( $curauth->user_url ); ?></a></dd>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<?php if ( ! empty( $curauth->user_description ) ) : ?>
|
<?php if ( ! empty( $curauth->user_description ) ) : ?>
|
||||||
<dt><?php esc_html_e( 'Profile', 'understrap' ); ?></dt>
|
<dt><?php esc_html_e( 'Profile', 'understrap' ); ?></dt>
|
||||||
<dd><?php echo $curauth->user_description; ?></dd>
|
<dd><?php echo esc_html( $curauth->user_description ); ?></dd>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
<h2><?php esc_html_e( 'Posts by', 'understrap' ); ?> <?php echo $curauth->nickname; ?>:</h2>
|
<h2><?php esc_html_e( 'Posts by', 'understrap' ); ?> <?php echo esc_html( $curauth->nickname ); ?>:</h2>
|
||||||
|
|
||||||
</header><!-- .page-header -->
|
</header><!-- .page-header -->
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ $container = get_theme_mod('understrap_container_type');
|
||||||
|
|
||||||
<div class="wrapper" id="wrapper-footer">
|
<div class="wrapper" id="wrapper-footer">
|
||||||
|
|
||||||
<div class="<?php echo $container; ?>" id="content">
|
<div class="<?php echo esc_html( $container ); ?>" id="content">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
<nav class="navbar navbar-dark bg-inverse site-navigation" itemscope="itemscope" itemtype="http://schema.org/SiteNavigationElement">
|
<nav class="navbar navbar-dark bg-inverse site-navigation" itemscope="itemscope" itemtype="http://schema.org/SiteNavigationElement">
|
||||||
|
|
||||||
<div class="<?php echo $container; ?>" id="content">
|
<div class="container-fluid" id="content">
|
||||||
|
|
||||||
<div class="navbar-header">
|
<div class="navbar-header">
|
||||||
|
|
||||||
|
|
2
home.php
2
home.php
|
@ -21,7 +21,7 @@ $posts_style = get_theme_mod( 'understrap_posts_index_style' );
|
||||||
|
|
||||||
<div class="wrapper" id="page-wrapper">
|
<div class="wrapper" id="page-wrapper">
|
||||||
|
|
||||||
<div class="<?php echo $container ?>" id="content" tabindex="-1">
|
<div class="<?php echo esc_html( $container ); ?>" id="content" tabindex="-1">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
<div class="wrapper" id="wrapper-index">
|
<div class="wrapper" id="wrapper-index">
|
||||||
|
|
||||||
<div class="<?php echo $container?>" id="content" tabindex="-1">
|
<div class="<?php echo esc_html( $container ); ?>" id="content" tabindex="-1">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,16 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
|
* Card patrial template responsible to show individual posts in home.php page.
|
||||||
|
*
|
||||||
* @package understrap
|
* @package understrap
|
||||||
*/
|
*/
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
|
<article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
|
||||||
|
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<?php if ( has_post_thumbnail() ): ?>
|
<?php if ( has_post_thumbnail() ) : ?>
|
||||||
<?php
|
<?php
|
||||||
$alt = get_post_meta( get_post_thumbnail_id( $post->ID ), '_wp_attachment_image_alt', true );
|
$alt = get_post_meta( get_post_thumbnail_id( $post->ID ), '_wp_attachment_image_alt', true );
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -16,7 +16,7 @@ $container = get_theme_mod('understrap_container_type');
|
||||||
|
|
||||||
<div class="wrapper" id="page-wrapper">
|
<div class="wrapper" id="page-wrapper">
|
||||||
|
|
||||||
<div class="<?php echo $container; ?>" id="content">
|
<div class="<?php echo esc_html( $container ); ?>" id="content">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
<div class="wrapper" id="full-width-page-wrapper">
|
<div class="wrapper" id="full-width-page-wrapper">
|
||||||
|
|
||||||
<div class="container" id="content">
|
<div class="<?php echo esc_html( $container ); ?>" id="content">
|
||||||
|
|
||||||
<div class="col-md-12 content-area" id="primary">
|
<div class="col-md-12 content-area" id="primary">
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ $container = get_theme_mod('understrap_container_type');
|
||||||
|
|
||||||
<div class="wrapper" id="page-wrapper">
|
<div class="wrapper" id="page-wrapper">
|
||||||
|
|
||||||
<div class="<?php echo $container; ?>" id="content">
|
<div class="<?php echo esc_html( $container ); ?>" id="content">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,7 @@ $qry = new WP_Query( $args );
|
||||||
|
|
||||||
<div class="wrapper" id="full-width-page-wrapper">
|
<div class="wrapper" id="full-width-page-wrapper">
|
||||||
|
|
||||||
<div class="<?php echo $container ?>" id="content">
|
<div class="<?php echo esc_html( $container ); ?>" id="content">
|
||||||
|
|
||||||
<div class="col-md-12 content-area" id="primary">
|
<div class="col-md-12 content-area" id="primary">
|
||||||
|
|
||||||
|
|
2
page.php
2
page.php
|
@ -37,7 +37,7 @@ if ( class_exists( 'WooCommerce' ) ) {
|
||||||
|
|
||||||
<div class="wrapper" id="page-wrapper">
|
<div class="wrapper" id="page-wrapper">
|
||||||
|
|
||||||
<div class="<?php echo esc_html( $container ) ?>" id="content" tabindex="-1">
|
<div class="<?php echo esc_html( $container ); ?>" id="content" tabindex="-1">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ $sidebar_pos = get_theme_mod('understrap_sidebar_position');
|
||||||
|
|
||||||
<div class="wrapper search-wrapper">
|
<div class="wrapper search-wrapper">
|
||||||
|
|
||||||
<div class="<?php echo $container?>" id="content" tabindex="-1">
|
<div class="<?php echo esc_html( $container ); ?>" id="content" tabindex="-1">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
|
|
|
@ -13,9 +13,9 @@ if ( ! is_active_sidebar( 'left-sidebar' ) ) {
|
||||||
$sidebar_pos = get_theme_mod( 'understrap_sidebar_position' );
|
$sidebar_pos = get_theme_mod( 'understrap_sidebar_position' );
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<?php if ( 'both' === $sidebar_pos ): ?>
|
<?php if ( 'both' === $sidebar_pos ) : ?>
|
||||||
<div class="col-md-3 widget-area" id="left-sidebar" role="complementary">
|
<div class="col-md-3 widget-area" id="left-sidebar" role="complementary">
|
||||||
<?php else: ?>
|
<?php else : ?>
|
||||||
<div class="col-md-4 widget-area" id="left-sidebar" role="complementary">
|
<div class="col-md-4 widget-area" id="left-sidebar" role="complementary">
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<?php dynamic_sidebar( 'left-sidebar' ); ?>
|
<?php dynamic_sidebar( 'left-sidebar' ); ?>
|
||||||
|
|
|
@ -13,9 +13,9 @@ if ( ! is_active_sidebar( 'right-sidebar' ) ) {
|
||||||
$sidebar_pos = get_theme_mod( 'understrap_sidebar_position' );
|
$sidebar_pos = get_theme_mod( 'understrap_sidebar_position' );
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<?php if ( 'both' === $sidebar_pos ): ?>
|
<?php if ( 'both' === $sidebar_pos ) : ?>
|
||||||
<div class="col-md-3 widget-area" id="right-sidebar" role="complementary">
|
<div class="col-md-3 widget-area" id="right-sidebar" role="complementary">
|
||||||
<?php else: ?>
|
<?php else : ?>
|
||||||
<div class="col-md-4 widget-area" id="right-sidebar" role="complementary">
|
<div class="col-md-4 widget-area" id="right-sidebar" role="complementary">
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<?php dynamic_sidebar( 'right-sidebar' ); ?>
|
<?php dynamic_sidebar( 'right-sidebar' ); ?>
|
||||||
|
|
|
@ -15,7 +15,7 @@ $sidebar_pos = get_theme_mod('understrap_sidebar_position');
|
||||||
|
|
||||||
<div class="wrapper" id="single-wrapper">
|
<div class="wrapper" id="single-wrapper">
|
||||||
|
|
||||||
<div class="<?php echo $container?>" id="content" tabindex="-1">
|
<div class="<?php echo esc_html( $container ); ?>" id="content" tabindex="-1">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
|
|
Reference in New Issue