Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 6 years ago.
Improve this questionit is a big problem. when a new user sign up in my website, as usual in wordpress, one email will be sent to him/her to be able to set him/her password.
the email will be sent but the link is incorrect. it is like so:
Username: username To set your password, visit the following address:
.php
as you see, the link is for login page, not for setting the password!!!
Closed. This question is off-topic. It is not currently accepting answers.Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 6 years ago.
Improve this questionit is a big problem. when a new user sign up in my website, as usual in wordpress, one email will be sent to him/her to be able to set him/her password.
the email will be sent but the link is incorrect. it is like so:
Username: username To set your password, visit the following address:
http://end-eng/wp-login.php
as you see, the link is for login page, not for setting the password!!!
you need to pass the post id as parameter and check it will give the result you want in function.php
function tr_count($post_id){
ob_start();
the_content();
$content = ob_get_clean();
return substr_count($content, '<tr>');
}
in single.php
echo tr_count(get_the_ID());