Hi @gulliver. ??
To start with, copy the parent theme’s entry.php file to your child theme.
In that file, we can find the following code which generates the existing “Edit” link on the front end:
if ( current_user_can( 'edit_post', get_the_ID() ) ) : ?> | <a href="<?php echo ( get_edit_post_link( get_the_ID() ) ); ?>" class="edit-post-link" rel="<?php the_ID(); ?>" title="<?php esc_attr_e( 'Edit', 'p2' ); ?>"><?php _e( 'Edit', 'p2' ); ?></a>
The above code can be used as template for adding a “Delete” link.
The get_edit_post_link() can be replaced with get_delete_post_link(). The last two references to “Edit” can also be replaced so that “Delete” is displayed in a link on the front end:
<php if ( current_user_can( 'edit_post', get_the_ID() ) ) : ?> | <a href="<?php echo ( get_delete_post_link( get_the_ID() ) ); ?>" class="edit-post-link" rel="<?php the_ID(); ?>" title="<?php esc_attr_e( 'Delete', 'p2' ); ?>"><?php _e( 'Delete', 'p2' ); ?></a>
Copy the above snippet below the code for the “Edit” link in your child theme’s entry.php file and let me know how you get on.