• Resolved Can

    (@candanbl0g)


    Hi there, a simple question: How To Add Category Data To quest_post_meta?

    Category data is shown at the end of the post by quest_post_taxonomy function. Is there a way to show it within the quest_post_meta function so that it can be seen at the beginning of the post with Date and Comment data?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author pacethemes

    (@pacethemes)

    Hello

    have you tried the below modified function ? If this works you have to remove all the quest_post_taxonomy functions calls in all theme files

    if ( ! function_exists( 'quest_post_meta' ) ) :
    
    	/**
    	 * Prints HTML with meta information for the current post-date/time, author & comments.
    	 */
    	function quest_post_meta() {
    		echo '<time class="post-date updated"><i class="fa fa-clock-o"></i>' . get_the_time( get_option( 'date_format' ) ) . '</time>';
    
    		echo '<span class="seperator">/</span>';
    
    		echo comments_popup_link(
    			__( '<i class="fa fa-comments"></i>&nbsp; No Comments', 'quest' ),
    			__( '<i class="fa fa-comments"></i>&nbsp; 1 Comment', 'quest' ),
    			__( '<i class="fa fa-comments"></i>&nbsp; % Comments', 'quest' ) );
    
    		quest_post_taxonomy( quest_get_view() );
    
    	}
    endif;
    Thread Starter Can

    (@candanbl0g)

    Hi,

    I haven’t tried since we decided not to use the category URL that way. Sorry for bothering you, but thanks for your fast response ??

    I will mark the topic as solved, by the way.

    Theme Author pacethemes

    (@pacethemes)

    No Problem, hope you like the Quest Theme, please rate us and help spread the word ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How To Add Category Data To quest_post_meta?’ is closed to new replies.