Skip to content

Commit

Permalink
Some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
inc2734 committed Nov 23, 2017
1 parent be7cbbd commit e52f130
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion resources/app/customizer/design.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* Layout
*/
$customizer->control( 'select', 'layout', [
'label' => __( 'Page layout', 'mimizuku' ),
'label' => __( 'Page layout', 'mimizuku' ),
'default' => 'right-sidebar',
'choices' => mimizuku_get_page_templates(),
] );
Expand Down
20 changes: 10 additions & 10 deletions resources/app/setup/entry-meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
$entry_meta = [];

/**
* Published
*/
* Published
*/
function mimizuku_entry_meta_items_published() {
?>
<li class="c-meta__item c-meta__item--published">
Expand All @@ -24,8 +24,8 @@ function mimizuku_entry_meta_items_published() {
add_action( 'mimizuku_entry_meta_items', 'mimizuku_entry_meta_items_published', 10 );

/**
* Modified
*/
* Modified
*/
function mimizuku_entry_meta_items_modified() {
if ( get_the_time( 'Ymd' ) === get_the_modified_time( 'Ymd' ) ) {
return;
Expand All @@ -43,8 +43,8 @@ function mimizuku_entry_meta_items_modified() {
add_action( 'mimizuku_entry_meta_items', 'mimizuku_entry_meta_items_modified', 20 );

/**
* Author
*/
* Author
*/
function mimizuku_entry_meta_items_author() {
?>
<li class="c-meta__item c-meta__item--author">
Expand All @@ -57,8 +57,8 @@ function mimizuku_entry_meta_items_author() {
add_action( 'mimizuku_entry_meta_items', 'mimizuku_entry_meta_items_author', 30 );

/**
* Categories
*/
* Categories
*/
function mimizuku_entry_meta_items_categories() {
$categories = get_the_terms( get_the_ID(), 'category' );
if ( ! $categories ) {
Expand All @@ -75,8 +75,8 @@ function mimizuku_entry_meta_items_categories() {
add_action( 'mimizuku_entry_meta_items', 'mimizuku_entry_meta_items_categories', 40 );

/**
* Tags
*/
* Tags
*/
function mimizuku_entry_meta_items_tags() {
$tags = get_the_tag_list( '', ', ' );
if ( ! $tags ) {
Expand Down

0 comments on commit e52f130

Please sign in to comment.