Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php $id_attr = '' !== $module_id ? sprintf( ' id="%1$s"', esc_attr( $module_id ) ) : ''; ?>
- <div <?php echo $id_attr ?> class="module post-module et_pb_extra_module <?php echo esc_attr( $module_class ); ?>" style="border-top-color:<?php echo esc_attr( $border_top_color ); ?>">
- <div class="module-head">
- <?php
- $idObj = get_category_by_slug($title);
- $id = $idObj->term_id;
- $link = get_category_link( $id );
- ?>
- <h1 style="color:<?php echo esc_attr( $module_title_color ); ?>">
- <a href="<?php echo $link; ?>">
- <?php echo esc_html__( 'All', 'extra' ); ?>
- </a>
- </h1>
- <?php
- if ($sub_title === 'Top Rated') {
- $sub_title = esc_html__( 'Top Rated', 'extra' );
- }
- elseif ($sub_title === 'Popular') {
- $sub_title = esc_html__( 'Popular', 'extra' );
- }
- else {
- $sub_title = esc_html__( 'Latest', 'extra' );
- }
- ?>
- <span class="module-filter"><?php echo esc_html( $sub_title ); ?></span>
- </div>
- <?php require locate_template( 'module-posts-content.php' ); ?>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment