How do I change the font size of the post metadata?
for example
add style.css bottom.
/* if you need publisher hide*/
article .posted-on .author,
article .entry-meta-default .author{
/* font size
10px = 77% 11px = 85% 12px = 93% 13px = 100%
14px = 108% 15px = 116% 16px = 123.1% 17px = 131%
18px = 138.5% 19px = 146.5% 20px = 153.9% 21px = 161.6%
22px = 167% 23px = 174% 24px = 182% 25px = 189%
26px = 197%
*/
font-size:153.9%;
}
How do I display the date but not the time?
dashboard / Settings / General
please config Time format
select custom value blank
How do I move the Comment link from the metadata line and put it at the bottom of the post?
If you did not write this code correctly, a serious error occurs.
It is assumed that there is an understanding of PHP
add functions.php top (<?php
before )
<?php
add_filter( 'raindrops_posted_in', 'function_name' );
function function_name( $return_value ) {
return $return_value . raindrops_comments_link();
}
add_filter( 'raindrops_posted_on', 'function_name2' );
function function_name2( $return_value ) {
return str_replace( raindrops_comments_link(), '', $return_value );
}
?>
change result like below
<?php
add_filter( 'raindrops_posted_in', 'function_name' );
function function_name( $return_value ) {
return $return_value . raindrops_comments_link();
}
add_filter( 'raindrops_posted_on', 'function_name2' );
function function_name2( $return_value ) {
return str_replace( raindrops_comments_link(), '', $return_value );
}
?><?php
/**
* functions and constants for Raindrops theme
*
*
* @package Raindrops
* @since Raindrops 0.1
*/
if ( !defined( 'ABSPATH' ) ) {
exit;
}