You appear to be a bot. Output may be restricted
Description
Get Download Title via AJAX
Usage
$void = edd_ajax_get_download_title();
Parameters
Returns
void
Source
File name: easy-digital-downloads/includes/ajax-functions.php
Lines:
1 to 17 of 17
function edd_ajax_get_download_title() { if ( isset( $_POST['download_id'] ) ) { $post_id = absint( $_POST['download_id'] ); $post_type = get_post_type( $post_id ); $title = 'fail'; if ( 'download' === $post_type ) { $post_title = get_the_title( $_POST['download_id'] ); if ( $post_title ) { echo $title = $post_title; } } echo $title; } edd_die(); }