Bug: ryu_entry_meta() has incorrect function_exists around it
-
In the file: inc/template-tags.php
Line: 167The string passed into function_exists() is incorrect. It should be ‘ryu_entry_meta’, not ‘ryu_posted_on’.
It reads:
if ( ! function_exists( 'ryu_posted_on' ) ) : /** * Prints HTML with meta information for the current post-date/time and author. */ function ryu_entry_meta() {It should read:
if ( ! function_exists( 'ryu_entry_meta' ) ) : /** * Prints HTML with meta information for the current post-date/time and author. */ function ryu_entry_meta() {
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Bug: ryu_entry_meta() has incorrect function_exists around it’ is closed to new replies.
