Skip to content

Instantly share code, notes, and snippets.

@xymox12
Created March 19, 2014 21:55
Show Gist options
  • Save xymox12/9652251 to your computer and use it in GitHub Desktop.
Save xymox12/9652251 to your computer and use it in GitHub Desktop.
Patch for Worpress Pages Children plugin 1.5.2.1 issue with taxonomy pages
Ref: http://wordpress.org/plugins/pages-children/
With the plugin v1.5.2.1 I get an error 'unsupported operand types class-wp-list-table.php on line 144'
To fix correct the missing $ in front of the arg variable on line 390 of pages-children.php :
return arg;
should be
return $args;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment