Tvorba a registrace WordPress widgetu

Tento článek je druhým dílem série zabývající se tvorbou WordPress widgetu. První článek byl Co byste měli vědět než se pustíte do tvorby prvního widgetu. Co budete potřebovat K tomu, abyste mohli pokračovat ve tvorbě widgetu, budete potřebovat: developerskou instalaci WordPressu vývojářský editor (doporučuji PSPad) Tvorba pluginu První věc, kterou musíte udělat je vytvořit plugin. Vytvořte […]

WYSIWYG widget

**Black Studio TinyMCE Widget**
„https://wordpress.org/plugins/black-studio-tinymce-widget/“:https://wordpress.org/plugins/black-studio-tinymce-widget/

This plugin adds a WYSIWYG text widget based on the standard TinyMCE WordPress visual editor. This is intended to overcome the limitations of the default WordPress text widget, so that you can visually add rich text contents to your sidebars, with no knowledge of HTML required.

WordPress 3.9: Snadná práce s widgety

Jenom krátce upozorním na jeden drobný trik, který pomůže usnadnit práci, zejména pokud používáte šablony, které mají definovaných mnoho oblastí pro widgety. Na začátek něco pro připomenutí. Ve WordPressu 3.9 je možné upravovat, přidávat a přemisťovat widgety přímo v rámci aktuálního náhledu (menu Vzhled – Přizpůsobit). Nemusíte se ale už obávat, že hrátkami s nastavením widgetů […]

Widget pro zobrazení obsahu v záložkách

**WP Tab Widget**
„http://wordpress.org/plugins/wp-tab-widget/screenshots/“:http://wordpress.org/plugins/wp-tab-widget/screenshots/

AJAXified plugin which loads content (recent, popular, comments…) by demand, and thus it makes the plugin incredibly lightweight.

„Demo »“:http://demo.mythemeshop.com/truepixel/

[* http://ps.w.org/wp-tab-widget/assets/screenshot-2.png?rev=881259 *]

[* http://ps.w.org/wp-tab-widget/assets/screenshot-1.png?rev=881259 *]

Vylepšený widget pro vkládání textu nebo kódu

**Enhanced Text Widget**
„http://wordpress.org/plugins/enhanced-text-widget/“:http://wordpress.org/plugins/enhanced-text-widget/

An enhanced version of the default text widget where you may have Text, HTML, CSS, JavaScript, Flash, WordPress Shortcodes and/or PHP as content with linkable widget title.

Flexibilní widget pro zobrazení příspěvků

**Flexible Posts Widget**
„http://wordpress.org/plugins/flexible-posts-widget/“:http://wordpress.org/plugins/flexible-posts-widget/

Flexible Posts Widget (FPW) is more than just a simple alternative to the default Recent Posts widget. With many per-instance options it is highly customizable and allows advanced users to display the resulting posts virtually any way imaginable.
Features & options

– Customizable widget title
– Get posts by post type(s) and/or taxonomy & term(s) or directly by a list of post IDs.
– Control the number of posts displayed and the number of posts to offset.
– Option to display the post feature image.
– Select the post feature image size to display from existing image sizes: thumbnail, medium, large, post-thumbnail or any size defined by the current theme.
– Order posts by: date, ID, title, menu order, random, Post ID Order; and sort posts: ascending or descending.
– Each widget’s output can be customized by user-defined templates added to the current theme folder.

„Customization »“:http://wordpress.org/plugins/flexible-posts-widget/other_notes/

Vytváření vlastních sidebarů a oblastí pro widgety

**Custom Sidebars**
„http://wordpress.org/plugins/custom-sidebars/“:http://wordpress.org/plugins/custom-sidebars/

Allows you to create all the widgetized areas you need, your own custom sidebars, configure them adding widgets, and replace the default sidebars on the posts or pages you want in just few clicks.

*Alternativy*

**Per Page Sidebars**
„http://wordpress.org/plugins/per-page-sidebars/“:http://wordpress.org/plugins/per-page-sidebars/

Allows the creation and display of custom sidebars for any page (or post) on your site. On each page, you can choose which of your current theme’s sidebars will be replaced. The replacement works for all descendants of a replaced page.

**Svépomocí**

V šabloně single.php a/nebo page.php najdeme kód:

/—code php
get_sidebar();
\—

a nahradíme jej tímto:

/—code php
$sidebar = get_post_meta($post->ID, „sidebar“, true);
get_sidebar($sidebar);
\—

V příspěvku nebo stránce, kde chceme zobrazit specifický sidebar pak přidáme uživatelské pole *Sidebar* a vložíme do něj jméno specifického sidebaru, např *xyz*. Soubor *sidebar-xyz.php* musí samozřejmě existovat. Vytvoříme ho zkopírováním originálního souboru *sidebar.php* (a případně podle potřeby upravíme).

Soubor sidebar-xyz upravíme následovně:

/—code php

\—

Pro vytvoření vlastní oblasti pro widgety do functions.php přidáme kód:

/—code php
if ( function_exists(‚register_sidebar‘) ) {
register_sidebar(array(
‚name‘ => ‚xyz‘,
‚id‘ => ‚xyz-sidebar‘,
‚description‘ => ‚Uživatelský sidebar pro stránku xyz“‚,
‚before_widget‘ => ‚

  • ‚,
    ‚after_widget‘ => ‚
  • ‚,
    ‚before_title‘ => ‚

    ‚,
    ‚after_title‘ => ‚

    ‚,
    // udaje v after a before třeba upravit v souladu s použitým tématem
    ));
    }\—

    Rich text editor widget

    **WP Editor Widget**
    „http://wordpress.org/plugins/wp-editor-widget/“:http://wordpress.org/plugins/wp-editor-widget/

    This plugin adds a rich text widget where the content is edited using the standard WordPress visual editor which most users already are familiar with. It uses the WP core function wp_editor() without adding a custom post type post for each widget making the widget quicker and simpler to edit.

    Shortcodes pro umistění widgetů do příspěvků a stránek

    **Amr shortcode any widget**
    „http://wordpress.org/extend/plugins/amr-shortcode-any-widget/“:http://wordpress.org/extend/plugins/amr-shortcode-any-widget/
    „http://webdesign.anmari.com/category/plugins/shortcode-any-widget/“:http://webdesign.anmari.com/category/plugins/shortcode-any-widget/

    Umožní použití widgetů v příspěvku nebo na stránce prostřednictvím shortcodes vložením [do_widget widgetname ] nebo [do_widget „widget name“ ].