$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>not sending correct link to set the password in registration email|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

not sending correct link to set the password in registration email

matteradmin9PV0评论
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 question

it 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 question

it 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
Add a comment  | 

1 Answer 1

Reset to default 1

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());
Post a comment

comment list (0)

  1. No comments so far