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: archives-template.php
<?php /** * Template Name: Archives * It is used to list archives of various types, like posts, pages, categories, tags */ if ( ! defined( 'ABSPATH' ) ) { exit; } // Exit if accessed directly get_header(); ?> <?php if ( have_posts() ) : the_post(); ?> <?php apollo13framework_title_bar(); ?> <article id="content" class="clearfix"> <div class="content-limiter"> <div id="col-mask"> <div id="post-<?php the_ID(); ?>" <?php post_class('content-box'); ?>> <div class="formatter"> <?php apollo13framework_title_bar( 'inside' ); ?> <div class="real-content"> <?php //page content the_content(); ?> <div class="clear"></div> <?php wp_link_pages( array( 'before' => '<div id="page-links">'.esc_html__( 'Pages: ', 'rife-free' ), 'after' => '</div>') ); ?> <div class="left50"> <h3><?php echo esc_html__( 'Latest 50 posts', 'rife-free' ); ?></h3> <ul class="styled"> <?php wp_get_archives(array( 'type' => 'postbypost', 'limit' => 50, )); ?> </ul> </div> <div class="right50"> <h3><?php esc_html_e( 'By months', 'rife-free' ); ?></h3> <ul class="styled"> <?php wp_get_archives(array( 'type' => 'monthly', 'show_post_count' => true, )); ?> </ul> <h3><?php echo esc_html__( 'Top 10 categories', 'rife-free' ); ?></h3> <ul class="styled"> <?php wp_list_categories(array( 'orderby' => 'count', 'order' => 'DESC', 'show_count' => 1, 'number' => 10, 'title_li' => '' )); ?> </ul> <h3><?php echo esc_html__( 'Top 10 tags', 'rife-free' ); ?></h3> <ul class="styled"> <?php $tags = get_tags(array( 'orderby' => 'count', 'order' => 'DESC', 'number' => 10, 'title_li' => '' )); foreach ($tags as $_tag){ $tag_link = get_tag_link($_tag->term_id); echo '<li><a href="'.esc_url($tag_link).'" class="'.esc_attr($_tag->slug).'">'.esc_html($_tag->name).'</a> ('.esc_html($_tag->count).')</li>'; } ?> </ul> </div> <div class="clear"></div> </div> </div> </div> <?php get_sidebar(); ?> </div> </div> </article> <?php endif; ?> <?php get_footer(); ?>
Upload File
Create Folder