How to bold login hyperlink
So, when people are looking at a listing they are unable to review it unless they are logged in. when they are not logged in, they see text that says "please login to add your review". How do I either change this whole line to a hyperlink to the login.php or bold the word 'login'.
The file I am seeing all of this in is 'single-listing.php' The bit of coding that I don't know how to edit correctly is here
Code:
<?php elseif ( !is_user_logged_in() ) : ?>
<p>
<?php printf( __( "Please %s to add your review.", APP_TD ), html_link( wp_login_url(), __( 'login', APP_TD ) ) ); ?>
</p>
<?php endif; ?>
I've tried just inserting words in there via html code, but that didnt work. I am not very familiar with php..
Also, I am having trouble with this file via child theme. I put it in my child theme's directory, but nothing changes when i edit the file.
Can anybody help with any of this?