Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //AGGIUNGI IL LINK EMAIL IN POST TABLE
- add_filter( 'post_row_actions', 'modify_list_row_actions', 10, 2 );
- function modify_list_row_actions( $actions, $post ) {
- // Check for your post type (e.g., 'post').
- if ( $post->post_type == 'post' ) {
- // Add the 'email' link.
- $mailto = "<a href=\"mailto:$recipient?subject=Your+inquiry&body=Email+message+body\">Send email</a>";
- }
- return $actions;
- }
Advertisement
Add Comment
Please, Sign In to add comment