neilgee
2/23/2017 - 3:13 AM

Genesis CSS Meta Selectors

Genesis CSS Meta Selectors


.entry-time::before {
    content: '\f469';
    font-family: dashicons;
    color: #666;
    font-size: 25px;
    padding-right: 5px;
    vertical-align: middle;
}

.entry-author::before {
    content: '\f110';
    font-family: dashicons;
    color: #666;
    font-size: 25px;
    padding-right: 5px;
    padding-left: 10px;
    vertical-align: sub;
}

.entry-comments-link::before {
    content: '\f101';
    font-family: dashicons;
    color: #666;
    font-size: 25px;
    padding-left: 10px;
    vertical-align: middle;
}

.entry-categories::before {
    content: '\f322';
    font-family: dashicons;
    color: #666;
    font-size: 25px;
    padding-right: 5px;
    vertical-align: middle;
}

.entry-tags::before {
    content: '\f323';
    font-family: dashicons;
    color: #666;
    font-size: 25px;
    padding-right: 5px;
    vertical-align: sub;
}
<?php //<~ don't add me in

// Customize entry meta header
add_filter( 'genesis_post_info', 'themeprefix_post_info_filter' );
function themeprefix_post_info_filter( $post_info ) {
	$post_info = '[post_date] [post_author_posts_link] [post_comments] [post_edit]';
	return $post_info;
}
<?php //<~ don't add me in

// Customize  entry meta footer
add_filter( 'genesis_post_meta', 'themeprefix_post_meta_filter' );
function themeprefix_post_meta_filter( $post_meta ) {
	$post_meta = '[post_categories] [post_tags]';
	return $post_meta;
}
<?php //<~ don't add me in

// Customize  entry meta footer
add_filter( 'genesis_post_meta', 'themeprefix_post_meta_filter' );
function themeprefix_post_meta_filter( $post_meta ) {
	$post_meta='[post_terms taxonomy="country_category" before="Country: "]
	return $post_meta;
}