Read More

'; } add_filter( 'the_content_more_link', 'modify_read_more_link' ); /** * Custom Edit Button */ function custom_edit_post_link($output) { $output = str_replace('class="post-edit-link"', 'class="post-edit-link btn btn-danger btn-xs"', $output); return $output; } add_filter('edit_post_link', 'custom_edit_post_link');