Fandom Developers Wiki
Advertisement

ListAdmins lists all admins on a wiki.

Installation

Usage

Add an empty container with the ID "admin-list" to the page(s):

<div id="admin-list"></div>

Design

The code fills your container with an unordered list. Neither ul nor li elements, nor the actual links are styled in any way. That's up to you. You could style them as a comma-separated list e.g.:

#admin-list ul {
    list-style: none; 
    margin: 0;
    padding: 0;
}
#admin-list ul li {
    display: inline;
}
#admin-list ul li::after {
    content: ", ";
}
#admin-list ul li:last-child::after {
    content: "";
}

Example

Here is an example of an admin list on Fandom Developers Wiki:

Text above can be found here (edit)
Advertisement