File Editor
Directories:
.. (Back)
css
fonts
functions
images
js
languages
Files:
404.php
about-section.php
breadcrumbs.php
comments.php
content-none.php
content-posts-home.php
content-posts.php
content-single.php
content.php
contentboxes-section.php
copyright.php
cta-section.php
features-section.php
footer.php
fromblog-section.php
functions.php
getintouch-section.php
getstarted-section.php
header.php
image.php
index.php
license.txt
owlpost-info.php
page-fullwidth.php
page-left-sidebar.php
page-right-sidebar.php
page.php
post-formats.php
post-info.php
post-meta.php
post-nav.php
readme.txt
services-section.php
sidebar-footer.php
sidebar.php
single.php
social-section.php
style.css
title-section.php
top-header.php
Create New File
Create
Edit File: post-info.php
<?php /** * @package Modality */ ?> <div class="post-info"> <?php if(has_post_format('image')) {?> <span><i class="fa fa-camera"></i><a href="<?php printf(esc_url( get_post_format_link( 'image' ))); ?>"><?php printf( __('Image','modality')); ?></a></span> <?php } elseif(has_post_format('gallery')) {?> <span><i class="fa fa-picture-o"></i><a href="<?php printf(esc_url( get_post_format_link( 'gallery' ))); ?>"><?php printf( __('Gallery','modality')); ?></a></span> <?php } elseif(has_post_format('video')) {?> <span><i class="fa fa-video-camera"></i><a href="<?php printf(esc_url( get_post_format_link( 'video' ))); ?>"><?php printf( __('Video','modality')); ?></a></span> <?php } elseif(has_post_format('aside')) {?> <span><i class="fa fa-file-text"></i><a href="<?php printf(esc_url( get_post_format_link( 'aside' ))); ?>"><?php printf( __('Aside','modality')); ?></a></span> <?php } elseif(has_post_format('audio')) {?> <span><i class="fa fa-music"></i><a href="<?php printf(esc_url( get_post_format_link( 'audio' ))); ?>"><?php printf( __('Audio','modality')); ?></a></span> <?php } else {?> <span><i class="fa fa-thumb-tack"></i><?php printf( __('Standard','modality')); ?></span> <?php } ?> <span class="separator"> / </span> <span><i class="fa fa-user"></i><?php _e('by ','modality'); printf(esc_url(the_author_posts_link())); ?> </span> <span class="separator"> / </span> <span><i class="fa fa-calendar"></i><?php printf(esc_attr( get_the_date())); ?> </span> <span class="separator"> / </span> <span><i class="fa fa-comment-o"></i><a href="<?php esc_url(comments_link()); ?>"><?php comments_number( __('No Comments','modality'), __('1 Comment','modality'), __('% Comments','modality')); ?></a></span> </div>
Save Changes
Rename File
Rename