jQuery Scrollable inside WordPress Theme
I would like to use the following jQuery Scrollable plugin (which is displaying 5 photos per pane), from http://flowplayer.org/tools/demos/scrollable/plugins/index.html on a Page in my WordPress theme but in a way that will allow the WP Admin user to go into this page and add/remove any images they want within this jQuery s开发者_如何学编程crollable plugin by using the Page "Insert Media" capability in WordPress.
Is this possible? if so, how would you do this setup within a WP Page?
I created a similar solution on a portfolio site recently. It is relatively difficult to use the insert media capability only, I was able to do it using a custom field and then querying the posts that had a non-null custom field, and then using those images in the scrollable.
The scrollable on my page is a little more complex, as it uses rich text and images, but it is possible to use the WPquery to search for URL's in the custom fields, and then include just those images in the scrollable.
Thus there is a two step process. 1) Upload the images with the Insert Media, 2) Copy the URL into a Custom Field.
I wonder if it can be done automatically with the individual pages gallery....
:)
精彩评论