Цей плагін не перевірявся з останніми 3-ма основними випусками WordPress. Можливо, він більше не може розроблятися або підтримуватися, і він може мати проблеми сумісності при використанні з більш новими версіями WordPress.

WP-Basics

Опис

This plugin adds six functionalities that all blogs should have:

  • Breadcrumbs
  • Pagination
  • Post pagination
  • Related content after posts
  • Author info after posts
  • Social sharing buttons after posts

You can turn on / off each functionality in one click or add it manually.
You will find an advanced setting page for easy customization on the wordpress menu.

Скріншоти

  • Breadcrumbs options.
  • Pagination options.
  • Post pagination options.
  • Related content options.
  • Author info options.
  • Social sharing options.

Встановлення

  1. Upload WP-Basics directory to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Go to WP-Basics menu to activate and configure the plugin

Часті питання

How can i use this functionalities to other site of my blog?

You can add each functionality anywhere on your blog by calling functions directly.
You will need some wordpress
knowledge to do this.

  • Breadcrumb: if ( function_exists( ‘wb_breadcrumbs’ ) ) { echo wb_breadcrumbs(); }
  • Pagination: if ( function_exists( ‘wb_pagination’ ) ) { echo wb_pagination(); }
  • Post pagination: if ( function_exists( ‘wb_post_pagination’ ) ) { echo wb_post_pagination(); }
  • Related content: if ( function_exists( ‘wb_related_content’ ) ) { echo wb_related_content(); }
  • Author info: if ( function_exists( ‘wb_author_info’ ) ) { echo wb_author_info(); }
  • Social sharing: if ( function_exists( ‘wb_social_sharing’ ) ) { echo wb_social_sharing(); }

If you do it, deactivate the function in the option panel. The other options will still work,
you can continue setting it through the options panel.

Відгуки

Для цього плагіна немає відгуків.

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

“WP-Basics” — проект з відкритим вихідним кодом. В розвиток плагіну внесли свій вклад наступні учасники:

Учасники

Перекладіть “WP-Basics” на вашу мову.

Цікавитесь розробкою?

Перегляньте код, перегляньте сховище SVN або підпишіться на журнал розробки за допомогою RSS.

Журнал змін

2.0

*Migration to Redux Framework
*Code improvments

1.7

*Improved options

1.5

*Added new images to option menu
*Added global pagination function

1.0

First release