function custom_excerpt_length($length) {
return 25; // Mengatur panjang excerpt menjadi 27 kata
}
add_filter('excerpt_length', 'custom_excerpt_length');
function remove_generatepress_meta() {
if (is_home() || is_category()) {
remove_action('generate_after_entry_title', 'generate_post_meta');
remove_action('generate_entry_meta', 'generate_post_meta');
}
}
add_action('wp', 'remove_generatepress_meta');
add_filter( 'generate_copyright','tu_custom_copyright' );
function tu_custom_copyright() {
?>
©2024 Knowbies.com
<?php
}
Mengatur Panjang Excerpt
Menghapus Meta Post di GeneratePress
Kustomisasi Copyright
0 komentar:
Post a Comment