$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'); ?>seo - What does short_ping do?|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)

seo - What does short_ping do?

matteradmin10PV0评论

Since WP 3.6, you can do short_ping on comments as you can see .

I want to use it for my new website ZorgWijzer.nl, but I am not really sure if this is good or bad for SEO. Can someone tell me where I can find more information?

Since WP 3.6, you can do short_ping on comments as you can see http://codex.wordpress/Function_Reference/wp_list_comments.

I want to use it for my new website ZorgWijzer.nl, but I am not really sure if this is good or bad for SEO. Can someone tell me where I can find more information?

Share Improve this question edited Jan 24, 2019 at 3:23 Jacob Peattie 44.3k10 gold badges50 silver badges64 bronze badges asked Aug 27, 2013 at 22:19 Roy van WensenRoy van Wensen 1751 silver badge8 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 5

If the comment is a pingback or a trackback and short_ping is true then the comment is processed by the ping method which formats the comment differently than either the html5_comment method or the comment method both of which create a much longer more complicated format than does the very minimal ping method.

You can kind-of guess what it does by the name of the variable, really, but when in doubt there is no better source of information than the source code itself.

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far