Use HTTPS URLs for codex.wordpress.org.

see #27115.

git-svn-id: https://develop.svn.wordpress.org/trunk@32116 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90)
2015-04-12 21:28:58 +00:00
parent 3c4b4ea0cc
commit b0d6757918
128 changed files with 234 additions and 234 deletions

View File

@@ -1131,7 +1131,7 @@ function get_comment_count( $post_id = 0 ) {
* Add meta data field to a comment.
*
* @since 2.9.0
* @link http://codex.wordpress.org/Function_Reference/add_comment_meta
* @link https://codex.wordpress.org/Function_Reference/add_comment_meta
*
* @param int $comment_id Comment ID.
* @param string $meta_key Metadata name.
@@ -1151,7 +1151,7 @@ function add_comment_meta($comment_id, $meta_key, $meta_value, $unique = false)
* allows removing all metadata matching key, if needed.
*
* @since 2.9.0
* @link http://codex.wordpress.org/Function_Reference/delete_comment_meta
* @link https://codex.wordpress.org/Function_Reference/delete_comment_meta
*
* @param int $comment_id comment ID
* @param string $meta_key Metadata name.
@@ -1166,7 +1166,7 @@ function delete_comment_meta($comment_id, $meta_key, $meta_value = '') {
* Retrieve comment meta field for a comment.
*
* @since 2.9.0
* @link http://codex.wordpress.org/Function_Reference/get_comment_meta
* @link https://codex.wordpress.org/Function_Reference/get_comment_meta
*
* @param int $comment_id Comment ID.
* @param string $key Optional. The meta key to retrieve. By default, returns data for all keys.
@@ -1187,7 +1187,7 @@ function get_comment_meta($comment_id, $key = '', $single = false) {
* If the meta field for the comment does not exist, it will be added.
*
* @since 2.9.0
* @link http://codex.wordpress.org/Function_Reference/update_comment_meta
* @link https://codex.wordpress.org/Function_Reference/update_comment_meta
*
* @param int $comment_id Comment ID.
* @param string $meta_key Metadata key.