• Hi,

    I am using the “the_excerpt reloaded” plugin for my blog. I tried to implement a flash player, too, like the “audio player”. But no flash player is shown on the front page, if the excerpt plugin is activated. It works without problems on the sinple post page.
    I tried every html tag i could find connected with the flash player and tried to say the excerpt plugin, that it should allow this tag. But nothing works.

    Does someone has an idea?

Viewing 2 replies - 1 through 2 (of 2 total)
  • You could make a new posts-with-flash category, and the use a conditional statement something along the lines of:
    <?php
    if(in_category(XX)) {
    the_content();
    } else {
    the_excerpt_reloaded();
    } ?>

    Where XX is your category number. That should make your flash posts work, and you can use the more tag to truncate them if you want.

    Thread Starter kapeka

    (@kapeka)

    Great, This works. Thanks a lot!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘The_excerpt reloaded and flash player’ is closed to new replies.