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

PCF New Year Countdown

Описание

Basic Instructions

This plugin works out-of-the-box, so once the plugin is installed, you can place a shortcode wherever you want.

Use the shortcode [pcf_ny_countdown] to output the countdown.

The countdown will output in days by default (e.g ‘105 days until New Year!’).

Changing output type

The shortcode can be given a ‘type’ attribute, like so:

[pcf_ny_countdown type="days|weeks|sleeps"]

This enables you to change the output type.

There are 3 types to choose from:

  • Days
  • Weeks
  • Sleeps

If you do not specify the type attribute, or specify an invalid type, it will default to ‘days’.

Example:

[pcf_ny_countdown type="weeks"]

will output as

It's `x` weeks and `y` days until New Year!

Styling the output

Styling the output is an advanced setting, that involves writing custom CSS.

The shortcode can be given an ‘id’ attribute, which can then be used to style the output using CSS.

For example,

[pcf_ny_countdown id="my-id"]

would output in HTML as

<p id="my-id">...</p>

You can then add custom CSS through Appearance > Editor. If your theme supports custom CSS, you may be able to add your styles in Theme Options. If there is a custom css file in Editor, it is advised to use that for custom styles.

Here is an example of some custom styles:

#my-id{
    color: red;
    font-size: 16px;
    text-decoration: underline;
}

This will set the output to be red, underlined, and to have a font size of 16px.

Установка

  1. Upload ‘newyear-countdown.zip’ to WordPress
  2. Activate the plugin once installed.
  3. Place shortcode where you want the countdown to appear!

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

Can I style the outputted text?

Yes! You can add an ID using the id id attribute. See ‘Description’ for more information.

Can I change the output text?

Other than the built in type attributes, no. However, with the premium version of our plugin you can custom this text.

Отзывы

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

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

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

Участники

Перевести «PCF New Year Countdown» на ваш язык.

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

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

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

1.2

  • [Fixed] Fixed a bug that caused the admin notice to appear on every page.

1.1

  • [Added] Added widget feature for users who don’t want to use shortcodes. The widget takes 2 inputs: type and id, which work in the same way as the shortcode attributes.
  • [Update] Rewrote some algorithms for more robustness and efficiency

1.0

  • Published Plugin