LLMS_Twenty_Twenty_One::add_pagination_classes( string[] $classes )

Add 2021 theme classes to the LLMS pagnation element


Description Description

Makes the pagination on catalogs look like the 2021 pagination on post type archives


Top ↑

Parameters Parameters

$classes

(string[]) (Required) List of CSS classes.


Top ↑

Return Return

(string[])


Top ↑

Source Source

File: includes/theme-support/class-llms-twenty-twenty-one.php

	public static function add_pagination_classes( $classes ) {
		$classes[] = 'navigation';
		$classes[] = 'pagination';
		return $classes;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.10.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.