get_edit_comment_link [ WordPress Function ]
get_edit_comment_link ( $comment_id = 0 )
| Parameters: |
|
| Returns: |
|
| Defined at: |
|
Soorgelijke functies: edit_comment_link, get_next_comments_link, get_comment_link, get_comments_link, get_edit_post_link
Retrieve edit comment link.
Source
<?php
function get_edit_comment_link( $comment_id = 0 ) {
$comment = &get_comment( $comment_id );
if ( !current_user_can( 'edit_comment', $comment->comment_ID ) )
return;
$location = admin_url('comment.php?action=editcomment&c=') . $comment->comment_ID;
return apply_filters( 'get_edit_comment_link', $location );
}
?>
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- get_edit_comment_link Wordpress hook details -- Adam Brown ...
get_edit_comment_link. WordPress version history for get_edit_comment_link. This database has information for all major versions from WP 1.2.1 through 3.3.
adambrown.info - get_edit_comment_link (WordPress Function) - WPSeek.com
WordPress lookup for get_edit_comment_link, a WordPress Function. wpseek. com is a WordPress-centric search tool for developers and theme authors.
wpseek.com - WordPress 'get_edit_post_link()' & 'get_edit_comment_link ...
Bugtraq ID: 30750. Class: Design Error. CVE: CVE-2008-3747. Remote: Yes. Local: No. Published: Aug 19 2008 12:00AM. Updated: Aug 28 2008 04:34PM ...
www.securityfocus.com - (get_edit_post_link() and get_edit_comment_link ... - WordPress Trac
get_edit_post_link() and get_edit_comment_link() don't use SSL when they ... (In [8380]) Make get_edit_post_link() and get_edit_comment_link() SSL aware.
core.trac.wordpress.org