Quote:
Originally Posted by fris
What happens if I want to use your player with a custom field?
|
You can use a direct plugin API call. E.g.:
Code:
<?php KVSFlvInsert(get_post_meta($post->ID, "video_url_custom_field", true) . ' ' . get_post_meta($post->ID, "video_poster_custom_field", true)); ?>
I.e. just insert this code into your single.php and it will do the trick. Don't see any problem with that.