이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

Multisite Site Index

설명

Display an index of all sites on a multisite network with a widget or a shortcode ([site-index]). The site icon, title, and tagline are displayed by default. You can customize the display with CSS, allowing for multiple-column layouts, hiding some of the information, removing list styles, or other changes over how your theme displays them. Some examples are included in the FAQ.

스크린샷

설치

  1. Take the easy route and install through the WordPress plugin installer, or,
  2. Download the .zip file and upload the unzipped folder to the /wp-content/plugins/ directory
  3. Activate the plugin through the ‘Plugins’ menu in WordPress
  4. Add the [site-index] shortcode to a post, or add a site list widget to a sidebar

FAQ

Exclude sites

Sites can be hidden from the list by adding an excluded argument to the shortcode, or with the option in the widget settings. Use a comma-separated list of site IDs. To find a site’s ID, look at the url for editing a site in the network admin. For example, the shortcode would be [site-index excluded="11,14,15,16"].

Showing more that 100 sites

On networks with more than 100 sites, a number of sites option is available. Keep in mind that showing more sites may cause issues with server/database resources on very large networks. Shortcode usage: [site-index number="200"].

Layout looks broken

This plugin does its best to work with every theme out of the box, but you may need to make tweaks to make it look better. Use the CSS functionality in the customizer (available in WordPress 4.7 and newer) to style the list container .site-index, the individual site list item containers .site-index .site, or individual elements such as .site-index-site-title, .site-index-site-tagline, or site-index-site-icon. A few complete examples follow.

Display sites in columns

To display the site index in multiple columns, add this CSS in the customizer (using WordPress 4.7 or newer):

.site-index .site {
    width: 48%;
    float: left;
    margin: 0 2% 1em 0;
    padding: 0;
}

ul.site-index {
    list-style: none;
    margin: 1em 0;
    padding: 0;
    overflow: hidden;
}

Make descriptions smaller

.site-index .site-index-site-tagline {
font-size: .8em;
}

Align icons with site titles

There are two ways to make sure the height of the icon matches the height of the site title – changing the icons to match the font size (Requires knowing the line-height used by your theme):

.site-index .site-index-site-icon {
    height:1.5em;
    width: 1.5em;
}

Or, you can set the font size and line height of the titles to match the icons:

.site-index .site-index-site-title {
    font-size: 24px;
    line-height: 32px;
}

Hide bullet points from the index list

.site-index {
list-style: none;
}

.site-index .site {
    margin: 1em 0 0 0;
}

후기

2025년 6월 5일
This is a great plugin, deceptively simple. I do think it could do with a few more options, but for what it is, it’s great, definitely not complaining!
2021년 11월 28일
This plugin is a great start. But missing some extra options. for example, your select a limit of 10 rites and want it to order at random. Randomly is not possible it is ordered by the latest update only.

thx

2019년 4월 24일
hope you keep this up to date. great multisite tool.
2019년 1월 16일
A nice to have plug-in when you have a multisite. This because it displays the list of all the sites with the shortcode [site-index]. With several nice switches and tips from the creator to modify CSS settings. A 5 star rating 🙂
모든 5 평가 읽기

기여자 & 개발자

“Multisite Site Index”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “Multisite Site Index”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

1.2

  • Increased the loaded site icon size for greater flexibility.

1.1

  • Added the number of sites option for large networks.
  • Hid deleted sites from the site index.

1.0

  • First publicly available version of the plugin.