X7ROOT File Manager
Current Path:
/home/oakwood/public_html/wp-content/themes/rife-free
home
/
oakwood
/
public_html
/
wp-content
/
themes
/
rife-free
/
ðŸ“
..
📄
404.php
(1.35 KB)
ðŸ“
advance
📄
albums-list.php
(3.45 KB)
📄
albums-template.php
(225 B)
📄
archives-template.php
(4.04 KB)
📄
attachment.php
(4.41 KB)
📄
changelog.txt
(53.62 KB)
📄
comments.php
(1.43 KB)
📄
content-chat.php
(706 B)
📄
content-link.php
(1.1 KB)
📄
content-status.php
(628 B)
📄
content.php
(1.47 KB)
ðŸ“
css
ðŸ“
default-settings
ðŸ“
fonts
📄
footer.php
(829 B)
📄
front-page.php
(1.48 KB)
📄
functions.php
(893 B)
ðŸ“
header-variants
📄
header.php
(1.42 KB)
ðŸ“
images
📄
index.php
(3.87 KB)
ðŸ“
js
ðŸ“
languages
📄
no-content.php
(2.12 KB)
📄
page.php
(2.44 KB)
ðŸ“
parts
📄
password-template.php
(1.28 KB)
📄
readme.txt
(6.96 KB)
📄
rife-free.theme
(968 B)
📄
screenshot.png
(333.35 KB)
ðŸ“
searchwp-live-ajax-search
📄
sidebar.php
(1.65 KB)
📄
single-album.php
(5.08 KB)
📄
single-work-ajax.php
(2.45 KB)
📄
single-work.php
(5.18 KB)
📄
single.php
(2.33 KB)
📄
style-rtl.css
(208.46 KB)
📄
style.css
(212.34 KB)
📄
taxonomy-genre.php
(351 B)
📄
taxonomy-work_genre.php
(347 B)
ðŸ“
woocommerce
📄
works-list.php
(3.43 KB)
📄
works-template.php
(221 B)
📄
wpml-config.xml
(7.31 KB)
Editing: single-album.php
<?php /** * The Template for displaying album items. */ if ( ! defined( 'ABSPATH' ) ) { exit; } // Exit if accessed directly global $apollo13framework_a13; define( 'A13FRAMEWORK_ALBUM_PAGE', true ); the_post(); if(post_password_required()){ /* don't use the_content() as it also applies filters that we don't need here, if we are using custom password page */ echo get_the_content(); } else{ get_header(); apollo13framework_title_bar(); $theme = $apollo13framework_a13->get_meta('_theme'); $_id = get_the_ID(); //check if album navigation should be displayed $navigation_location = $apollo13framework_a13->get_option( 'album_navigation' ); if( $navigation_location === 'after_title' ){ add_action( 'apollo13framework_after_album_title_bar', 'apollo13framework_albums_outside_nav' ); } elseif( $navigation_location === 'after_album' ){ add_action( 'apollo13framework_after_album_comments', 'apollo13framework_albums_outside_nav' ); } if($theme === 'bricks'){ $args = array( 'cover_color' => get_post_meta( $_id, '_slide_cover_color', true), 'show_desc' => get_post_meta( $_id, '_enable_desc', true ), 'filter' => $apollo13framework_a13->get_option( 'album_bricks_filter' ), 'lightbox' => get_post_meta( $_id, '_bricks_lightbox', true ), 'lightbox_mobile' => get_post_meta( $_id, '_bricks_lightbox_mobile', true ), 'content_column' => $apollo13framework_a13->get_meta( '_album_content' ), 'title_position' => $apollo13framework_a13->get_meta( '_bricks_title_position' ), 'hover_effect' => get_post_meta( $_id, '_bricks_hover', true ), 'overlay_cover' => $apollo13framework_a13->get_meta( '_bricks_overlay_cover' ), 'overlay_cover_hover' => $apollo13framework_a13->get_meta( '_bricks_overlay_cover_hover' ), 'overlay_gradient' => $apollo13framework_a13->get_meta( '_bricks_overlay_gradient' ), 'overlay_gradient_hover' => $apollo13framework_a13->get_meta( '_bricks_overlay_gradient_hover' ), 'overlay_texts' => $apollo13framework_a13->get_meta( '_bricks_overlay_texts' ), 'overlay_texts_hover' => $apollo13framework_a13->get_meta( '_bricks_overlay_texts_hover' ), 'socials' => get_post_meta( $_id, 'sharing_disabled', true) !== '1' ? 'on' : 'off', 'proportion' => get_post_meta( $_id, '_bricks_proportions_size', true), 'margin' => get_post_meta( $_id, '_brick_margin', true ), 'max_width' => get_post_meta( $_id, '_bricks_max_width', true ), 'columns' => get_post_meta( $_id, '_brick_columns', true ), 'class' => 'single-album-gallery' ); ?> <article id="content" class="clearfix"<?php apollo13framework_schema_args('creative'); ?>> <div class="content-limiter"> <div id="col-mask"> <div class="content-box"> <?php do_action( 'apollo13framework_after_album_title_bar' ); apollo13framework_make_bricks_gallery($args); apollo13framework_album_comments(); do_action( 'apollo13framework_after_album_comments' ); ?> </div> </div> </div> </article> <?php } elseif($theme === 'slider'){ $show_desc = get_post_meta( $_id, '_enable_desc', true); $title_color = get_post_meta( $_id, '_slide_title_bg_color', true ); $title_color = ( $title_color === '' || $title_color === false || $title_color === 'transparent' ) ? '' : $title_color; $thumbs = $apollo13framework_a13->get_meta( '_thumbs' ); $thumbs_on_load = $apollo13framework_a13->get_meta( '_thumbs_on_load' ); $ken_scale = $apollo13framework_a13->get_meta( '_ken_scale' ); $slider_opts = array( 'autoplay' => $apollo13framework_a13->get_meta( '_autoplay' ), 'transition' => $apollo13framework_a13->get_meta( '_transition' ), 'fit_variant' => $apollo13framework_a13->get_meta( '_fit_variant' ), 'pattern' => $apollo13framework_a13->get_meta( '_pattern' ), 'gradient' => $apollo13framework_a13->get_meta( '_gradient' ), 'ken_burns_scale' => strlen($ken_scale) ? $ken_scale : 120, 'texts' => $show_desc, 'title_color' => $title_color, 'transition_time' => $apollo13framework_a13->get_option( 'album_slider_transition_time' ), 'slide_interval' => $apollo13framework_a13->get_option( 'album_slider_slide_interval' ), 'thumbs' => $thumbs, 'thumbs_on_load' => $thumbs_on_load, 'socials' => 'on', 'window_high' => 'on', 'main_slider' => 'on' ); do_action( 'apollo13framework_after_album_title_bar' ); apollo13framework_make_slider($slider_opts); apollo13framework_album_comments(); do_action( 'apollo13framework_after_album_comments' ); } get_footer(); }
Upload File
Create Folder