Custom walker in child theme
-
Hello,
I want to override
class.WpdiscuzWalker.php
in my child theme, but it seems wpDiscuz only checks the parent theme. Now I’m trying to use the filter, but nothing so far. What am I doing wrong?function myprefix_comments_walker( $value ) { return get_stylesheet_directory() . '/wpdiscuz/class.WpdiscuzWalker.php'; } add_filter('wpdiscuz_walker_include', 'myprefix_comments_walker');
I tried putting the
add_filter()
part in myafter_setup_theme
function, but even then I can’t get it to override.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Custom walker in child theme’ is closed to new replies.