Guest User

Untitled

a guest
Oct 17th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <?php
  2.  
  3. // Get the connected posts
  4. $my_connected_downloads = Post_Connector::API()->get_children( "your-dlm-connection", get_the_id() );
  5.  
  6. // Check
  7. if ( count( $my_connected_downloads ) > 0 ) {
  8.  
  9. // Loop
  10. foreach ( $my_connected_downloads as $my_connected_download ) {
  11. $download_obj = new DLM_Download( $my_connected_download->ID );
  12.  
  13. // Display the title with a link
  14. echo "<a href='" . $download_obj->get_the_download_link() . "'>" . $download_obj->get_the_title() . "</a><br/>";
  15.  
  16. }
  17.  
  18. }
Add Comment
Please, Sign In to add comment