How do I localize admin-ajax.php that is used in Ajax Load More – Infinite Scroll?

You can achieve this using wp_localize_script

$myData = array(
    'ajaxurl' => admin_url( 'admin-ajax.php' ),
);
wp_localize_script( "myScript", "alm_localize", $myData );

NOTE: myScript should be the handle of a script which has been registered using wp_register_script