Custom theme not visible
-
Hello,
I have followed the instructions on this page. https://github.com/cabrerahector/wordpress-popular-posts/wiki/6.-Styling-the-list
However, I am unable to see my custom theme in the dropdown list of the widget.
I copied the theme folder into the currently active WP theme folder and used the following function in the functions.php
/** * Registers my WPP theme. * * @param array $themes * @return array */ function register_my_wpp_theme($themes){ // Absolute path to the theme $themes = get_template_directory() . '/wpp_hamim'; return $themes; } add_filter('wpp_additional_themes', 'register_my_wpp_theme');
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Custom theme not visible’ is closed to new replies.