Skip to content

Instantly share code, notes, and snippets.

@everaldomatias
Created June 22, 2023 22:41
Show Gist options
  • Save everaldomatias/b25ff3ea99b708d6738a3c5314b3b40e to your computer and use it in GitHub Desktop.
Save everaldomatias/b25ff3ea99b708d6738a3c5314b3b40e to your computer and use it in GitHub Desktop.
Altera o `excerpt_more` na Home e para o CPT `deputado`
<?php
function filter_excerpt_more( $more ) {
global $post;
if ( is_front_page() ) {
if ( ! ( 'deputado' == $post->post_type ) ) {
return $more;
}
$read_more_text = '[...]';
return ' <a href="'. get_permalink( $post->ID ) . '">' . $read_more_text . '</a>';
}
return $more;
}
add_filter( 'excerpt_more', 'filter_excerpt_more', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment