Sacconi69

LINK EMAIL IN POST TABLE

Oct 19th, 2024
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. //AGGIUNGI IL LINK EMAIL IN POST TABLE
  2.  
  3. add_filter( 'post_row_actions', 'modify_list_row_actions', 10, 2 );
  4.  
  5. function modify_list_row_actions( $actions, $post ) {
  6. // Check for your post type (e.g., 'post').
  7. if ( $post->post_type == 'post' ) {
  8.  
  9. // Add the 'email' link.
  10. $mailto = "<a href=\"mailto:$recipient?subject=Your+inquiry&body=Email+message+body\">Send email</a>";
  11. }
  12.  
  13. return $actions;
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment