date format in wordpress post
Posted on <?php the_time( 'l, F jS, Y' ); ?>.
date format in wordpress post
Posted on <?php the_time( 'l, F jS, Y' ); ?>.
wordpress change post format
add_theme_support( 'post-formats', array('aside','video','gallery','chat'));
function rename_post_formats($translation, $text, $context, $domain) {
$names = array(
'Aside' => 'No Featured image',
'Chat' => 'Full Width',
);
if ($context == 'Post format') {
$translation = str_replace(array_keys($names), array_values($names), $text);
}
return $translation;
}
add_filter('gettext_with_context', 'rename_post_formats', 10, 4);
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us