elsnare Posted October 18, 2013 Share Posted October 18, 2013 Hello and thank you for your time. Long story short I need to put: <? wpsc_the_custom_fields( 'slug=url-movie')?> <?php print insert_proplayer( array(), 'RIGHT HERE' ); ?> Unfortunately after trying for around 2h I could not make it to work. The custom field returns an url, that should be loaded into the player code. Thanks in advance! Quote Link to comment Share on other sites More sharing options...
halben Posted October 18, 2013 Share Posted October 18, 2013 <? wpsc_the_custom_fields( 'slug=url-movie')?> Add <?php Quote Link to comment Share on other sites More sharing options...
requinix Posted October 19, 2013 Share Posted October 19, 2013 (edited) Or maybe you're asking for <?php print insert_proplayer( array(), // wpsc_the_custom_fields( 'slug=url-movie') ); ?>which isn't easy because apparently wpsc_the_custom_fields() outputs information instead of returning it. Which is one of the reasons why every good developer I know personally loathes WordPress. You'd have to do stupid crap with output buffering <?php ob_start(); wpsc_the_custom_fields( 'slug=url-movie'); print insert_proplayer( array(), ob_get_clean() ); ?>Can you modify insert_proplayer() to not need that wpsc_the_custom_fields() as an argument? It's all getting printed anyways. Edited October 19, 2013 by requinix Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.