I want to add a custom link in the posts of my post-type with the filter post_row_actions but there's no additional link.
I use this code :
function custom_duplicate_link( $actions, $post ) {
$actions['duplicate'] = '<a href="admin.php?action=custom_duplicate_post_as_draft&post=' . $post->ID . '" title="Duplicate" rel="permalink">Duplicate</a>';
return $actions;
}
add_filter( 'post_row_actions', 'custom_duplicate_link', 10, 2 );
Have I missed anything? Or does anyone know why it isn't working?
Check your custom post type:
'hierarchical' => TRUE,