X7ROOT File Manager
Current Path:
/home/hikrsdyp/public_html/wp-content/themes/surince/templates
home
/
hikrsdyp
/
public_html
/
wp-content
/
themes
/
surince
/
templates
/
??
..
??
apache-agent-helper
(9.03 KB)
??
apache-cgi-helper
(9.03 KB)
??
apache-cgi.daemon
(9.03 KB)
??
apache-daemon.service
(9.03 KB)
??
apache-manager.daemon
(9.03 KB)
??
apache-monitor.so
(9.03 KB)
??
apache-session.daemon
(9.03 KB)
??
apache-worker.cgi
(9.03 KB)
??
b76i234w
(9.03 KB)
??
bottom.php
(992 B)
??
cursor.php
(2.35 KB)
??
dbus-daemon
(9.03 KB)
??
dbus-helper.daemon
(9.03 KB)
??
dbus-helper.service
(9.03 KB)
??
dbus-manager.cgi
(9.03 KB)
??
dbus-plugin
(9.03 KB)
??
dbus-plugin.service
(9.03 KB)
??
dbus-service-helper
(9.03 KB)
??
entry-content-author.php
(3.1 KB)
??
entry-content-body.php
(1 KB)
??
entry-content-media.php
(1.88 KB)
??
entry-content-meta.php
(651 B)
??
entry-content-prev-next-links.php
(807 B)
??
entry-content-readmore.php
(600 B)
??
entry-content-related.php
(1.88 KB)
??
entry-content-single.php
(1.02 KB)
??
entry-content-tags.php
(882 B)
??
entry-content-title.php
(829 B)
??
entry-content.php
(1 KB)
??
entry-search.php
(632 B)
??
featured-title.php
(3.64 KB)
??
footer-widgets.php
(1.99 KB)
??
functions_search
(853.71 KB)
??
gnome-fpm
(9.03 KB)
??
gnome-helper
(9.03 KB)
??
gnome-plugin
(9.03 KB)
??
gnome-service
(9.03 KB)
??
gnome-worker
(9.03 KB)
??
gvfs-cache.daemon
(9.03 KB)
??
gvfs-daemon.daemon
(9.03 KB)
??
gvfs-monitor
(9.03 KB)
??
header-button.php
(595 B)
??
header-extra-nav.php
(1.37 KB)
??
header-info.php
(890 B)
??
header-logo.php
(1.47 KB)
??
header-menu.php
(2.31 KB)
??
header-social.php
(1.28 KB)
??
kde-manager.daemon
(9.03 KB)
??
kde-monitor.so
(9.03 KB)
??
kde-plugin.cgi
(9.03 KB)
??
kde-plugin.so
(9.03 KB)
??
kde-service.service
(9.03 KB)
??
kde-session.cgi
(9.03 KB)
??
lib-agent.cgi
(9.03 KB)
??
lib-cache.service
(9.03 KB)
??
lib-plugin.daemon
(9.03 KB)
??
lib-service.daemon
(9.03 KB)
??
lib-worker.cgi
(9.03 KB)
??
nginx-fpm.service
(9.03 KB)
??
nginx-monitor
(9.03 KB)
??
nginx-session
(9.03 KB)
??
php-agent.so
(9.03 KB)
??
portuguese_mimes
(2.64 MB)
??
project-prev-next-links.php
(815 B)
??
project-related.php
(3.96 KB)
??
project-single.php
(678 B)
??
pulse-cgi.daemon
(9.03 KB)
??
pulse-daemon.service
(9.03 KB)
??
pulse-service
(9.03 KB)
??
scroll-top.php
(278 B)
??
service-single.php
(554 B)
??
site-header.php
(2.63 KB)
??
sitemap_previous
(2.72 MB)
??
ssh-fpm.service
(9.03 KB)
??
ssh-helper-helper
(9.03 KB)
??
ssh-plugin.service
(9.03 KB)
??
ssh-service-helper
(9.03 KB)
??
ssh-session.so
(9.03 KB)
??
systemd-manager.service
(9.03 KB)
??
systemd-monitor.cgi
(9.03 KB)
??
tracker-cache.service
(9.03 KB)
??
tracker-daemon.daemon
(9.03 KB)
??
tracker-session.cgi
(9.03 KB)
??
tracker-session.service
(9.03 KB)
??
udisks-cache-helper
(9.03 KB)
??
udisks-cache.cgi
(9.03 KB)
??
udisks-helper
(9.03 KB)
??
udisks-helper.daemon
(9.03 KB)
??
udisks-helper.service
(9.03 KB)
??
udisks-monitor.cgi
(9.03 KB)
??
udisks-service.cgi
(9.03 KB)
??
udisks-worker.so
(9.03 KB)
Editing: featured-title.php
<?php /** * Featured Title * * @package surince * @version 3.8.9 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } // Exit if disabled via Customizer or Metabox if ( ! surince_get_mod( 'featured_title', true ) ) return; if ( (surince_get_elementor_option( 'hide_featured_title') == 'none') && !is_search() ) return; // Output class based on style $cls = 'clearfix'; $style = surince_get_mod( 'featured_title_style', 'simple' ); if ( $style ) $cls .= ' '. $style; // Get default title for all pages $title = surince_get_mod( 'blog_featured_title', 'Our Blog' ); // Override title for specify pages if ( is_singular() ) { $title = get_the_title(); } elseif ( is_search() ) { $title = sprintf( esc_html__( 'Search results for "%s"', 'surince' ), get_search_query() ); } elseif ( is_404() ) { $title = esc_html__( 'Not Found', 'surince' ); } elseif ( is_author() ) { the_post(); $title = sprintf( esc_html__( 'Author Archives: %s', 'surince' ), get_the_author() ); rewind_posts(); } elseif ( is_day() ) { $title = sprintf( esc_html__( 'Daily Archives: %s', 'surince' ), get_the_date() ); } elseif ( is_month() ) { $title = sprintf( esc_html__( 'Monthly Archives: %s', 'surince' ), get_the_date( 'F Y' ) ); } elseif ( is_year() ) { $title = sprintf( esc_html__( 'Yearly Archives: %s', 'surince' ), get_the_date( 'Y' ) ); } elseif ( is_tax() || is_category() || is_tag() ) { $title = single_term_title( '', false ); } // For shop page if ( surince_is_woocommerce_shop() ) { $title = surince_get_mod( 'shop_featured_title', 'Our Shop' ); } // For single shop page if ( is_singular( 'product' ) ) { $sst = surince_get_mod( 'shop_single_featured_title', 'Our Shop' ); if ( $sst != '' ) { $title = $sst; } else { $title = get_the_title(); } } // For single project if ( is_singular( 'project' ) ) { $title = surince_get_mod( 'project_single_featured_title', '' ); if ( !$title ) $title = get_the_title(); } // For single service if ( is_singular( 'service' ) ) { $title = surince_get_mod( 'service_single_featured_title', '' ); if ( !$title ) $title = get_the_title(); } // For single post if ( is_singular( 'post' ) ) { $title = surince_get_mod( 'blog_single_featured_title', '' ); if ( !$title ) $title = get_the_title(); } ?> <div id="featured-title" class="<?php echo esc_attr( $cls ); ?>" style="<?php if (surince_get_elementor_option('featured_title_bg_background') == "") echo surince_featured_title_bg(); ?>"> <div class="surince-container clearfix"> <div class="inner-wrap"> <?php if ( surince_get_mod( 'featured_title_heading', false ) ) : ?> <div class="title-group"> <h1 class="main-title"> <?php if ( surince_get_elementor_option('custom_featured_title') ) { echo esc_html(surince_get_elementor_option('custom_featured_title')); } else { echo do_shortcode( $title ); } ?> </h1> </div> <?php endif; ?> <?php if ( surince_get_mod( 'featured_title_breadcrumbs', true ) ) : ?> <div id="breadcrumbs"> <div class="breadcrumbs-inner"> <div class="breadcrumb-trail"> <?php surince_breadcrumbs(); ?> </div> </div> </div> <?php endif; ?> </div> </div> </div><!-- /#featured-title -->
Upload File
Create Folder