Этот плагин не тестировался с последними 3 основными выпусками WordPress. Скорее всего, он уже не поддерживается и может быть несовместим с текущими версиями WordPress.

WP Featured Soliloquy Sliders

Описание

This plugin provides a metabox on posts and pages listing existing Soliloquy Sliders. The end user is allowed to choose one and make it associated with the post or page via meta data.

Practically speaking, Featured Sliders work exactly like Featured Images. The Post or Page and Featured Sliders are merely attached, and you must use a template tag or WordPress functions to render the Slider.

Please see Other Notes for examples.

Usage

Page or Post meta has a key called _t1k_featured_slider. A very simple way to render the slider is like this:

<?php
    $meta = get_post_custom();
    if ( isset( $meta['_t1k_featured_slider'][0] ) && is_numeric( $meta['_t1k_featured_slider'][0] ) && function_exists( 'soliloquy' ) ) {
        soliloquy( absint( $meta['_t1k_featured_slider'][0] ) );
    }
?>

Скриншоты

  • The Featured Sliders meta box when you do not have any Sliders created in Soliloquy.

  • The Featured Sliders meta box when you do have Sliders created in Soliloquy.

Установка

This section describes how to install the plugin and get it working.

  1. Upload the wp-featured-soliloquy-sliders folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Create new or Edit a Post.

Часто задаваемые вопросы

Why don’t you have more questions here?

I haven’t been asked any yet. 🙂

Отзывы

Нет отзывов об этом плагине.

Участники и разработчики

«WP Featured Soliloquy Sliders» — проект с открытым исходным кодом. В развитие плагина внесли свой вклад следующие участники:

Участники

Перевести «WP Featured Soliloquy Sliders» на ваш язык.

Заинтересованы в разработке?

Посмотрите код, проверьте SVN репозиторий, или подпишитесь на журнал разработки по RSS.

Журнал изменений

1.1

Check for WP 4.0

1.0

  • Initial release.