use-wp
v0.0.20
Published
Connect to your WordPress blog via custom React Hooks
Maintainers
Readme
useWp
To remove the read more link in excerpt, add this to the end of your functions.php file in your theme files:
function new_excerpt_more($more) {
global $post;
return '...';
}
add_filter('excerpt_more', 'new_excerpt_more');