Skip to content

Blogroll installed at daveverse.org #17

Description

@scotthansonde

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.

  1. 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');
  1. 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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions