-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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