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!!!
Share Improve this question edited Dec 22, 2018 at 11:09 sh.dehnavi asked Dec 13, 2018 at 21:32 sh.dehnavish.dehnavi 411 silver badge12 bronze badges 4- Now i display those table by HTML but maybe it will change in Future. – sh.dehnavi Commented Dec 13, 2018 at 21:39
- Well have you tried the code you posted? – Jacob Peattie Commented Dec 14, 2018 at 0:46
- @Jacob Peattie Hi. no my friend. i am not sure about that – sh.dehnavi Commented Dec 14, 2018 at 9:32
- @JacobPeattie my friend. i can not ask question. and i edited my question! would you help? – sh.dehnavi Commented Dec 22, 2018 at 11:27
1 Answer
Reset to default 1you 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());