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_actions3', 10, 2 );
- function modify_list_row_actions3( $actions, $post ) {
- // Check for your post type (e.g., 'post').
- if ( $post->post_type == 'post' ) {
- $name= get_post_meta( $post->ID, 'function_name', true );
- $post = $post->ID;
- $recipient = get_the_author_meta ( 'email_richiesta');
- $subject = get_the_author_meta ( 'soggetto_richiesta');
- $message = get_the_author_meta( 'mia_richiesta' ) ;
- $actions[email] = "<a href=\"mailto:$recipient?subject=$subject&body=$message\">email</a>";
- }
- return $actions;
- }
Advertisement
Add Comment
Please, Sign In to add comment