Added two parent theme files

This commit is contained in:
Silvan Calarco 2015-02-22 16:03:09 +01:00
parent 84dbe32064
commit d1e1c7e18a
2 changed files with 32 additions and 0 deletions

32
post-data.php Normal file
View File

@ -0,0 +1,32 @@
<?php
// Exit if accessed directly
if ( !defined( 'ABSPATH' ) ) {
exit;
}
/**
* Post Data Template-Part File
*
* @file post-data.php
* @package Responsive
* @author Emil Uzelac
* @copyright 2003 - 2014 CyberChimps
* @license license.txt
* @version Release: 1.1.0
* @filesource wp-content/themes/responsive/post-data.php
* @link http://codex.wordpress.org/Templates
* @since available since Release 1.0
*/
?>
<?php if ( !is_page() && !is_search() ) { ?>
<div class="post-data">
<!--?php printf( __( 'Posted in %s', 'responsive' ), get_the_category_list( ', ' ) ); ?-->
<?php the_tags( __( 'Tagged with:', 'responsive' ) . ' ', ', ', '<br />' ); ?>
</div><!-- end of .post-data -->
<?php } ?>
<div class="post-edit"><?php edit_post_link( __( 'Edit', 'responsive' ) ); ?></div>

0
sidebar.php Normal file
View File