You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
420 B
11 lines
420 B
<?php declare(strict_types=1);
|
|
|
|
use wpsocialicons\Settings;
|
|
|
|
["exclude" => $exclude, "orientation" => $orientation, "alignment" => $alignment] = $attributes ?? [];
|
|
$services = array_filter((array) Settings::Services(), fn ($value, $key) => !in_array($key, $exclude), ARRAY_FILTER_USE_BOTH);
|
|
|
|
the_wp_social_icons([
|
|
"exclude" => $exclude,
|
|
"container_class" => "wp-social-icons $orientation align-$alignment",
|
|
]); |