Skip to content

Commit

Permalink
Fixes #59 : Article Categories widget removes the default WordPress C…
Browse files Browse the repository at this point in the history
…ategory widget
  • Loading branch information
mohsinrasool committed Nov 8, 2019
1 parent 51ab4ef commit fa587f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion issuem-widgets.php
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,8 @@ class IssueM_Article_Categories extends WP_Widget {

function __construct() {
$widget_ops = array( 'classname' => 'issuem_widget_categories', 'description' => __( 'A list or dropdown of Article categories', 'issuem' ) );
parent::__construct('categories', __( 'Article Categories', 'issuem' ), $widget_ops);
parent::__construct('IssueM_Article_Categories', __( 'Article Categories', 'issuem' ), $widget_ops);

}

function widget( $args, $instance ) {
Expand Down

0 comments on commit fa587f7

Please sign in to comment.