I was able to install the plugin into a site with the WordLand Baseline theme, and https://daveverse.org (by @scripting) is now showing a blogroll on the index page.
I did run into a couple of issues setting up the plugin.
- The first time I installed the plugin and tried to use it with WordLand Baseline, the content failed to load with the error "Uncaught ReferenceError: jQuery is not defined". Research suggested to make sure jQuery is loaded before the plugin is run by adding this to functions.php
function mytheme_enqueue_jquery() {
wp_enqueue_script('jquery');
}
add_action('wp_enqueue_scripts', 'mytheme_enqueue_jquery');
- I wanted to style the title in the blogroll in .divQuietTitle, but I found that the styles from the plugin were being loaded after the styles in the theme, and thus I could not override them. For now I just put
!important on my styles, but there is certainly a more elegant way for users to add their own styles to the blogroll.
I was able to install the plugin into a site with the WordLand Baseline theme, and https://daveverse.org (by @scripting) is now showing a blogroll on the index page.
I did run into a couple of issues setting up the plugin.
!importanton my styles, but there is certainly a more elegant way for users to add their own styles to the blogroll.