File Editor
Directories:
.. (Back)
ai-app
cloud
common
core
epanel
fonts
framework
images
includes
lang
scripts
Files:
changelog.txt
comments.php
footer.php
functions.php
header.php
home.php
index-content.php
index.php
module-ads.php
module-featured-posts-slider.php
module-posts-blog-feed-loop.php
module-posts-blog-feed.php
module-posts-carousel.php
module-posts-content.php
module-posts.php
module-tabbed-posts-tab.php
module-tabbed-posts.php
options_extra.php
page-template-authors.php
page-template-blog-feed.php
page-template-contact.php
page-template-fullwidth.php
page-template-member.php
page-template-portfolio.php
page-template-sitemap.php
page-template-timeline.php
page.php
post-top-content.php
post_thumbnails_extra.php
sidebar-footer.php
sidebar.php
single-et_pb_layout.php
single-post.php
single-project.php
single.php
style-cpt-rtl.min.css
style-cpt.min.css
style-rtl.min.css
style-static-cpt-rtl.min.css
style-static-cpt.min.css
style-static-rtl.min.css
style-static.min.css
style.css
style.min.css
theme-after-wrappers.php
theme-before-wrappers.php
theme-footer.php
theme-header.php
timeline-posts-content.php
Create New File
Create
Edit File: module-tabbed-posts.php
<?php $id_attr = '' !== $module_id ? sprintf( ' id="%1$s"', esc_attr( $module_id ) ) : ''; ?> <div <?php echo $id_attr ?> class="module tabbed-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="tabs clearfix"> <ul> <?php foreach ( $terms as $tab_id => $term ) { $no_term_color_tab_nav_class = is_customize_preview() && $term['color'] === extra_global_accent_color() ? 'no-term-color-tab' : ''; ?> <li id="category-tab-<?php echo esc_attr( $tab_id ); ?>" class="et-accent-color-parent-term <?php echo esc_attr( $no_term_color_tab_nav_class ); ?>" data-tab-id="<?php echo esc_attr( $tab_id ); ?>" data-term-color="<?php echo esc_attr( $term['color'] ); ?>" ripple="" ripple-inverse=""> <span> <?php echo esc_html( $term['name'] ); ?> </span> </li> <?php } ?> </ul> <div class="tab-nav"> <span class="prev arrow" title="<?php esc_attr_e( 'Previous Tab', 'extra' ); ?>"></span> <span class="next arrow" title="<?php esc_attr_e( 'Next Tab', 'extra' ); ?>"></span> </div> </div> <div class="tab-contents"> <?php echo $content; ?> </div> </div>
Save Changes
Rename File
Rename