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

Flexible hReview

Описание

Flexible hReview lets you add an hReview to a Post, then show that review anywhere on your site using the function or the shortcode.
Also available on GitHub: https://github.com/SteveBarnett/Flexible-hReview.

The options page lets you set:

  • field names for multi-dimensional reviews
  • the maximum rating
  • whether or not to calculate and display an average of the ratings
  • characters for before and after the rating text

Установка

  1. Install Flexible hReview via the WordPress.org plugin directory, or by uploading the files to your server.
  2. Activate the plugin through the Plugins menu in WordPress.
  3. Add the function or shortcode in the place you want the hreview to display.
  4. Add CSS to visually hide elements of the hreview you do not wish to display.

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

How do I display an hReview in the body of the Post?

To display the current Post’s hReview use
[flexible_hreview]

To display a different Post’s hReview use
[flexible_hreview id=»123″]
where 123 is ID of the Post.

How do I display an hReview in a Theme file?

In single.php:

<?php
if(function_exists('flexible_hreview_html')) {
echo flexible_hreview_html();
};
?>

In other files:

<?php
if(function_exists('flexible_hreview_html')) {
echo flexible_hreview_html(123);
};
?>

where 123 is ID of the Post.

How do hide elements of the hReview?

Use CSS to visually hide elements of the hReview. For example, to hide the version number:

.hreview .version {
position: absolute;
left: -999em;
}

Отзывы

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

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

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

Участники

Перевести «Flexible hReview» на ваш язык.

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

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

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

0.7

  • Fixed preview
  • Maximum Rating saves in Post meta

0.6

  • Added FAQ section

0.5

  • Initial release