How to hide “post” link from the admin bar

Try this:

$wp_admin_bar->remove_node( 'new-post' );

It will remove Post link under the admin bar’s + New link.

LEARN MORE: remove_node() – WordPress Codex