2017 © Pedro Peláez
 

library widgify

A helper class to easily create Wordpress widgets.

image

devdk/widgify

A helper class to easily create Wordpress widgets.

  • Thursday, March 27, 2014
  • by tkjaergaard
  • Repository
  • 1 Watchers
  • 0 Stars
  • 8 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

Widgify

Widgify is a simple wrapper class for the WP_Widget class, providing a simple and clean API for crating new widgets for your Wordpress site., (*1)

Usage

Install the Widgify plugin and activate it., (*2)

Now, either in your own plugin or in your theme functions.php you can use the Widget class., (*3)

<?php
use Devdk\Widgify;

Widgify::make($id, $name, $desc, function($widget){

    $widget->add_field([
        "name"    => "title",
        "label"   => "Title",
        "default" => "Enter your title"
    ]);

    $widget->output(function($args, $instance)
    {
        $title = apply_filters( 'widget_title', $instance['title'] );

        echo $args['before_widget'];
        if ( !empty($title) )
            echo $args['before_title'] . $title . $args['after_title'];

        echo $args['after_widget'];
    });

});

Available field types

Widgify has, for now, these field types build in., (*4)

  • text
  • textarea
  • pages
  • select
  • upload

The Versions

27/03 2014

dev-master

9999999-dev

A helper class to easily create Wordpress widgets.

  Sources   Download

MIT

by t_kjaergaard

wordpress devdk

27/03 2014

1.1.1

1.1.1.0

A helper class to easily create Wordpress widgets.

  Sources   Download

MIT

by t_kjaergaard

wordpress devdk

08/10 2013

1.1.0

1.1.0.0

A helper class to easily create Wordpress widgets.

  Sources   Download

MIT

by t_kjaergaard

wordpress devdk

24/09 2013

1.0.2

1.0.2.0

A helper class to easily create complet Wordpress widgets

  Sources   Download

MIT

by t_kjaergaard

24/09 2013

1.0.1

1.0.1.0

A helper class to easily create complet Wordpress widgets

  Sources   Download

MIT

by t_kjaergaard

23/09 2013

1.0.0

1.0.0.0

A helper class to easily create complet Wordpress widgets

  Sources   Download

MIT

by t_kjaergaard