在WP多站点中,概述中最多可以显示999个站点。它不受站点的限制,看起来像是设置或参数之类的东西。例如,这发生在networkbackoffice的站点概述中。当有999个以上的站点时,将显示分页(第二页)。
我想知道是否有办法提高这个数字。
编辑我尝试了import UIKit
import SwipeCellKit
class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
@IBOutlet weak var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 4
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell") as! SwipeTableViewCell
return cell
}
}
class SwipeTableViewCellSubClass: SwipeTableViewCell {
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
}
就像apply_filters( {"sites_network_per_page"}, 3)
一样(因为我不知道apply_filters( "sites_network_per_page", 3)
和{
是否应该放在其中apply_filters。但是,这给了我500。我在步轨上吗?