Deze plugin is niet getest met de laatste drie grote versies van WordPress. Mogelijk wordt het niet meer onderhouden of ondersteund. Er kunnen ook compatibiliteitsproblemen ontstaan wanneer het wordt gebruikt met recentere versies van WordPress.

Shuffle

Beschrijving

Shuffle lets you:

  1. Attach an item (Image, Audio, Video) to anything (Post, Page, Custom Post Type, another Attachment)!

Use these functions in your Theme to get your re-ordered Media:

<?php
//In the Loop:
get_images();

//Outside of the Loop:
get_images( get_the_ID() );

// Audio
get_audio();

// Video
get_video();

?>

Read more: http://scotty-t.com/2010/11/15/my-first-plugin-shuffle/

Schermafbeeldingen

  • In your Post library, rollover actions have added to conveniently point you to all of your item’s attachments

  • You can now attach an attachment to ANYTHING, why not another attachment! Since all we are doing is setting post_parent, and attachments are Posts in the database, it is now easy to manage your associations. We also make sure you can’t attach an attachment to itself 🙂

Beoordelingen

Er zijn geen beoordelingen voor deze plugin.

Bijdragers & ontwikkelaars

“Shuffle” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers

Vertaal “Shuffle” naar jouw taal.

Interesse in de ontwikkeling?

Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.

Changelog

0.5

  • Update the code, remove things that are now in WordPress core

0.4

  • Re-wrote the whole thing

0.3

  • Removed =& wherever it was unnecessarily being used, important so no Notices / Errors will not be thrown when error_reporting(-1)

0.2

  • get_images() will now exclude the post’s featured image / post thumbnail by default
  • all Theme functions will now take query_posts() params as the only argument if desired, ‘and_featured’ => true will force the return of the post thumnbail in the result

0.1

  • Initial release