Jump to content

Probably a simple code formating problem


elsnare

Recommended Posts

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!

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.