Skip to content

Instantly share code, notes, and snippets.

@csangela
csangela / fp-employees.php
Created April 18, 2017 13:03
Sistemas Int Modificacion Brief fp-employees.php
<?php
class Sydney_Employees extends WP_Widget {
public function __construct() {
$widget_ops = array('classname' => 'sydney_employees_widget', 'description' => __( 'Display your team members in a stylish way.', 'sydney') );
parent::__construct(false, $name = __('Sydney FP: Employees', 'sydney'), $widget_ops);
$this->alt_option_name = 'sydney_employees_widget';
}
@csangela
csangela / fp-employees.php
Last active April 18, 2017 12:50
Sistemas Int Original fp-employees.php
<?php
class Sydney_Employees extends WP_Widget {
public function __construct() {
$widget_ops = array('classname' => 'sydney_employees_widget', 'description' => __( 'Display your team members in a stylish way.', 'sydney') );
parent::__construct(false, $name = __('Sydney FP: Employees', 'sydney'), $widget_ops);
$this->alt_option_name = 'sydney_employees_widget';
}