There is no hook. The only place to print something to the screen is at the beginning of the field where $author_url = get_comment_author_url();
is executed.
Sample:
add_action( 'load-edit-comments.php', 'wpse_64737_comment_actions' );
function wpse_64737_comment_actions( $url="" )
{
if ( 'load-edit-comments.php' === current_filter() )
{
add_filter( 'get_comment_author_url', __FUNCTION__ );
return;
}
echo '<p>Output in the Author field!</p>';
return $url;
}
You can move that output with JavaScript to the bottom of the field later.
Related Posts:
- Find out which moderator approved comment?
- How to add filter in “Comments” at the admin panel?
- How to display only logged in user’s post comments in comments area
- In administration, how do I display comments of a certain user?
- How can I make the user names of commentors clickable links to the user’s profile from the admin comment screen?
- What are the standard admin CSS id/class tags?
- how to know if admin is in edit page or post [duplicate]
- How to remove entire admin menu?
- The website cannot display the page
- How can I target WordPress 3.8 new interface MP6 with CSS?
- Settings API – easiest way of validating checkboxes?
- initial sort order for a sortable custom column in admin
- Uploading files in admin panel?
- Read only capability for custom post in admin area
- How can ‘admin_email’ be set?
- How to change WordPress default strings?
- Remove ability to access certain admin menus
- Gutenberg “Add Block” button is not active (greyed out), cannot add new blocks
- How To View Site from Non-Logged-In User’s Perspective
- Daily notices of failed login attempts for non-existent admin user
- Reorder plugin items in the admin menu
- Wrong url in sortable column headers & pagination in the admin, when behind a proxy
- Reference external file as a function
- “Automatically add new top-level pages” Default
- Can you have the users list pre sorted by specific column?
- WordPress manage users as non admin
- remove_action with profile_personal_options
- With WP 3.4 customizer, while using postMessage & working within your JS for one option, can you retrieve current value for another option?
- Refreshing collections in the admin media manager
- $user_id vs. is_user_logged_in()
- Conditionally load CSS/JS/PHP in wp-admin if using a mobile device
- Assuming a theme is properly secured, how save is the WordPress admin?
- How to solve 500 Error on WordPress Admin Dashboard due to time-out on getdirsize
- Enabling users to replace site title (text) with a image logo (but keeping the text if there isn’t any image)?
- WordPress How to begin editing from admin page (please see picture)
- WordPress as a web app – always auto-save post and meta data
- Determining whether it’s a AJAX call from front-end or from back-end
- Disable the “Skip to Toolbar” tabbing accessibility feature
- Custom Thickbox Broken on Dashboard Page?
- Categorizing Page Templates
- Super slow admin panel
- Save author posts as in pending review – block users updating their posts
- POMO_Reader->substr() call endless loop?
- jQuery UI AutoComplete & wp_enqueue_script
- Edit Auto Update Admin Notification
- Unable to Access WP Admin or Login buttons after Migration
- Add custom button next to native “Apply” button in the edit-tag screen
- Enqueue and Dequeue from admin bar nodes
- How to enqueue admin content outside admincp
- admin_enqueue_scripts the same css file as wp_enqueue_style
- How do I correctly transfer my site from one domain to another?
- Unable to get to the admin panel
- Where can I store common cross-site text (e.g. headings, titles etc.)
- get_current_screen and the WP_Screen class
- How to find a spam link?
- Is there alternative to WP_List_Table?
- How to change all “Post” texts in dahboard into “Article”?
- How to modify admin headers
- Problems to disable the comments for my statics pages
- Filter WooCommerce Orders
- Directly editing content on webpage, is it possible?
- How to disable Media Library uploads for non-Admin users?
- Page can’t hand request – HTTP ERROR 500 – when updating something
- Admin user lacks admin permissions after hack and can’t reinstate
- How to change the User name and Password of admin account
- Redirect public site to another one but allow administrators to access the old site
- “sufficient permissions” error for admin after duplicating WP database to new install
- Posts in sidebar only by admin
- How to remove the default checked attribute from inputs in admin?
- Passing state from child component to parent component in a Gutenberg Sidebar
- I can’t enter the control panel of my wordpress site after channing the URL to https://
- Admin user column sort by numeric meta key
- How do I add custom field to Admin comment form and display
- Shop in Subdomain feeding main domain order in admin area
- Can I retrieve Published changes when changes have been Saved but not Published in WordPress Semplice?
- Error 404 Display on otherlinks apart from homepage
- I can’t access login page
- Admin Access for specific page(s)
- Comments counter only for Authors Posts
- Get Link of Page Selected through a Select Field in Custom Admin Page
- Sortable admin columns by 0.00 number
- WordPress Admin Thickbox: Remove Margins/Padding
- how to disable the e-mail verification on wp-admin/options-general.php multisite admin e-mail
- How to change the title attribute for the WP logo image on wp-login.php
- WordPress Admin Email
- conditionally update css on edit.php
- Simple CSS admin pagination
- Can I show the tag admin interface on a post when logged in as an admin?
- WordPress “Hide WP” Gives Me Error After Admin Login [closed]
- Editing post in admin panel
- Making a custom upload form and page in the admin section
- site admin for subscribers
- Customise the add media pop-up to include rel attribute option
- Custom Div with links on Admin Bar
- WordPress admin loads erratically “connection reset by peer”
- How to fix broken admin Thickbox?
- New User Notification – Setting Email
- Can’t access my wp admin: captcha images invisible, gives me error message
- Pull Random Images From Options Page [closed]
- Woo Commerce Settings for Check-out Form [closed]