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

Advanced Random Posts Widget

Описание

Notice

This plugin is no longer supported, please use Recent posts widget Extended instead.

This plugin will enable a custom, flexible and advanced random posts. It allows you to display a list of random posts via shortcode or widget with thumbnail, excerpt and post date, also you can display it from all or specific or multiple taxonomy.

Features Include

  • Allow you to set title url.
  • Display thumbnails, with customizable size and alignment.
  • Display excerpt, with customizable length.
  • Display from all, specific or multiple category.
  • Display from all, specific or multiple tag.
  • Display from all, specific or multiple taxonomy.
  • Отображение даты записи.
  • Display post modified date.
  • Типы записей.
  • Статус записи.
  • Allow you to set custom css class per widget.
  • Add custom html or text before and/or after random posts.
  • Multiple widgets.

Support Me

Shorcode Explanation

Объяснение атрибутов шорткода:

Основной шорткод

[arpw]

Отображение 10 случайных записей

[arpw limit="10"]

Display with thumbnail and set the size

[arpw thumbnail="true" thumbnail_size="arpw-thumbnail"]

Display posts based on category by id

[arpw thumbnail="true" cat="10"]

Отображение типа записи portfolio

[arpw post_type="portfolio"]

Here’s the full default shortcode arguments

title=""
offset=""
limit="5"
post_type="post"
post_status="publish"
ignore_sticky="1"
taxonomy=""
cat=""
tag=""
thumbnail="false"
thumbnail_size="arpw-thumbnail"
thumbnail_align="left"
excerpt="false"
excerpt_length="10"
date="false"
date_modified="false"
date_relative="false"
css_class=""
before=""
after=""

Скриншоты

  • Настройки виджета

Установка

Through Dashboard

  1. Log in to your WordPress admin panel and go to Plugins -> Add New
  2. Type advanced random posts widget in the search box and click on search button.
  3. Find Advanced Random Posts Widget plugin.
  4. Then click on Install Now after that activate the plugin.
  5. Go to the widgets page Appearance -> Widgets.
  6. Найдите виджет Случайные записи.

Установка с помощью FTP

  1. Загрузите плагин на свой жёсткий диск.
  2. Unzip.
  3. Upload the advanced-random-posts-widget folder into your plugins directory.
  4. Log in to your WordPress admin panel and click the Plugins menu.
  5. Then activate the plugin.
  6. Go to the widgets page Appearance -> Widgets.
  7. Найдите виджет Случайные записи.

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

No image/thumbnail options?

Your theme needs to support Post Thumbnail, please go to https://codex.wordpress.org/Post_Thumbnails to read more info and how to activate it in your theme.

Размер миниатюры

By default it uses arpw-thumbnail which have 50×50 size. If you want to use custom image size, you can install https://wordpress.org/plugins/simple-image-sizes/ then create new image size, it will appear in the Размер миниатюры selectbox in the widget option.

Thumbnail Size Not Working Properly

I have mentioned it in the plugin description. If you use images that were uploaded to the media library before you installed this plugin and/or you have your own custom image sizes, please install Regenerate Thumbnails plugin to fix the image size.

Как добавить произвольный стиль?

The plugin comes with a very basic style, if you want to add custom style please do wp_dequeue_style to remove the default stylesheet. Place the code below in your theme functions.php.

function prefix_remove_arpw_style() {
    wp_dequeue_style( 'arpw-style' );
}
add_action( 'wp_enqueue_scripts', 'prefix_remove_arpw_style', 10 );

Then you can add your custom style using Custom CSS plugin or in your theme style.css. Here’s the plugin selector

/* ul */
.arpw-ul {}

/* li */
.arpw-li {}

/* title */
.arpw-title {}

/* thumbnail */
.arpw-thumbnail {}

/* date */
.arpw-time {}

/* excerpt */
.arpw-summary {}

Отзывы

10.06.2022
this is a great useful plugin but need to be updated!
10.06.2021
This plug-in works so well it hasn't needed any updates for 2 years. Nothing out there matches it. However, because it hasn't been updated in so long my security software is now flagging it as "abandoned." Please "update" the plug-in! (Maybe to include not stripping formatting from the excerpt?)
28.04.2021
This plugin is really excellent. It works for me with Wordpress 5.7. I would be nice that the Developer makes a test and declare the plugin compabible (or not) for the last version of wordpress.
19.11.2020
In the beginning this plugin was great, but several months ago, the developer has abandoned it. No answers in the support forum, and not updates. Best regards.
Посмотреть все 39 отзывов

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

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

Участники

«Advanced Random Posts Widget» переведён на 2 языка. Благодарим переводчиков за их работу.

Перевести «Advanced Random Posts Widget» на ваш язык.

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

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

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

2.2.0 — March 07, 2019

  • Поддержка WordPress 5.1
  • Added: Display full post. props Rhys Wynne
  • Added: width and height attribute if using custom image size