英文:
WordPress shortcode function for generating svg icons
问题
I have created a WordPress function called svg_icon()
, to print/echo inline svg icons.
I want to print an inline svg based on an array's key and attributes.
Here is my function code:
function svg_icon($atts = array()) {
$atts = shortcode_atts([
'icon' => false,
'label' => false,
], $atts);
if (empty($atts['icon']))
return;
$config = [
'arrow' => [
'<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd"><path d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/></svg>'
],
'hamburger' => [
'<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13 16.745c0-.414-.336-.75-.75-.75h-9.5c-.414 0-.75.336-.75.75s.336.75.75.75h9.5c.414 0 .75-.336.75-.75zm9-5c0-.414-.336-.75-.75-.75h-18.5c-.414 0-.75.336-.75.75s.336.75.75.75h18.5c.414 0 .75-.336.75-.75zm-4-5c0-.414-.336-.75-.75-.75h-14.5c-.414 0-.75.336-.75.75s.336.75.75.75h14.5c.414 0 .75-.336.75-.75z" fill-rule="nonzero"/></svg>'
],
'close' => [
'<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12.002 2.005c5.518 0 9.998 4.48 9.998 9.997 0 5.518-4.48 9.998-9.998 9.998-5.517 0-9.997-4.48-9.997-9.998 0-5.517 4.48-9.997 9.997-9.997zm0 1.5c-4.69 0-8.497 3.807-8.497 8.497s3.807 8.498 8.497 8.498 8.498-3.808 8.498-8.498-3.808-8.497-8.498-8.497zm0 7.425 2.717-2.718c.146-.146.339-.219.531-.219.404 0 .75.325.75.75 0 .193-.073.384-.219.531l-2.717 2.717 2.727 2.728c.147.147.22.339.22.531 0 .427-.349.75-.75.75-.192 0-.384-.073-.53-.219l-2.729-2.728-2.728 2.728c-.146.146-.338.219-.53.219-.401 0-.751-.323-.751-.75 0-.192.073-.384.22-.531l2.728-2.728-2.722-2.722c-.146-.147-.219-.338-.219-.531 0-.425.346-.749.75-.749.192 0 .385.073.531.219z" fill-rule="nonzero"/></svg>'
]
];
if (array_key_exists($atts['icon'], $config)) {
$repl = '<svg aria-hidden="true" role="img" focusable="false" ';
$svg = preg_replace('/^<svg /', $repl, trim($atts['icon']));
$svg = preg_replace("/([\\n\\t]+)/", ' ', $svg); // Remove newlines & tabs.
$svg = preg_replace('/>\s*</', '><', $svg); // Remove white space between SVG tags.
if (!empty($atts['label'])) {
$svg = str_replace('<svg ', '<svg aria-label="' . esc_attr($atts['label']) . '"', $svg);
$svg = str_replace('aria-hidden="true"', '', $svg);
}
return $svg;
}
}
Printing svg icon:
echo svg_icon([
'icon' => 'hamburger',
'label' => 'Main Menu',
]);
I'm having a problem. It's printing only the first $config
array key (arrow) and nothing else.
英文:
I have created a WordPress function called svg_icon()
, to print/echo inline svg icons.
I want to print an inline svg based on an array's key and attributes.
Here is my function code
function svg_icon($atts = array()) {
$atts = shortcode_atts([
'icon' => false,
'label' => false,
], $atts);
if (empty($atts['icon']))
return;
$config = [
'arrow' => [
'<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd"><path d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/></svg>'
],
'hamburger' => [
'<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13 16.745c0-.414-.336-.75-.75-.75h-9.5c-.414 0-.75.336-.75.75s.336.75.75.75h9.5c.414 0 .75-.336.75-.75zm9-5c0-.414-.336-.75-.75-.75h-18.5c-.414 0-.75.336-.75.75s.336.75.75.75h18.5c.414 0 .75-.336.75-.75zm-4-5c0-.414-.336-.75-.75-.75h-14.5c-.414 0-.75.336-.75.75s.336.75.75.75h14.5c.414 0 .75-.336.75-.75z" fill-rule="nonzero"/></svg>'
],
'close' => [
'<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12.002 2.005c5.518 0 9.998 4.48 9.998 9.997 0 5.518-4.48 9.998-9.998 9.998-5.517 0-9.997-4.48-9.997-9.998 0-5.517 4.48-9.997 9.997-9.997zm0 1.5c-4.69 0-8.497 3.807-8.497 8.497s3.807 8.498 8.497 8.498 8.498-3.808 8.498-8.498-3.808-8.497-8.498-8.497zm0 7.425 2.717-2.718c.146-.146.339-.219.531-.219.404 0 .75.325.75.75 0 .193-.073.384-.219.531l-2.717 2.717 2.727 2.728c.147.147.22.339.22.531 0 .427-.349.75-.75.75-.192 0-.384-.073-.53-.219l-2.729-2.728-2.728 2.728c-.146.146-.338.219-.53.219-.401 0-.751-.323-.751-.75 0-.192.073-.384.22-.531l2.728-2.728-2.722-2.722c-.146-.147-.219-.338-.219-.531 0-.425.346-.749.75-.749.192 0 .385.073.531.219z" fill-rule="nonzero"/></svg>'
]
];
if (array_key_exists($atts['icon'], $config)) {
$repl = '<svg aria-hidden="true" role="img" focusable="false" ';
$svg = preg_replace('/^<svg /', $repl, trim($atts['icon']));
$svg = preg_replace("/([\n\t]+)/", ' ', $svg); // Remove newlines & tabs.
$svg = preg_replace('/>\s*</', '><', $svg); // Remove white space between SVG tags.
if (!empty($atts['label'])) {
$svg = str_replace('<svg ', '<svg aria-label="'. esc_attr($atts['label']) .'"', $svg);
$svg = str_replace('aria-hidden="true"', '', $svg);
}
return $svg;
}
}
printing svg icon.
echo svg_icon([
'icon' => 'hamburger',
'label' => 'Main Menu',
]);
I'm having a problem. It's printing only the first $config
array key (arrow) and nothing else.
答案1
得分: 1
你的代码问题在于$config数组的结构。$config数组中的每个键应该有一个对应的SVG字符串数组。目前,你已经将每个SVG字符串定义为单独的数组元素,导致函数只返回$config中的第一个键值对。
英文:
The issue with your code lies in the $config array structure. Each key in the $config array should have a corresponding array of SVG strings. Currently, you have defined each SVG string as a separate array element, causing the function to only return the first key-value pair from $config.
$config = [
'arrow' => '<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd"><path d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/></svg>',
'hamburger' => '<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13 16.745c0-.414-.336-.75-.75-.75h-9.5c-.414 0-.75.336-.75.75s.336.75.75.75h9.5c.414 0 .75-.336.75-.75zm9-5c0-.414-.336-.75-.75-.75h-18.5c-.414 0-.75.336-.75.75s.336.75.75.75h18.5c.414 0 .75-.336.75-.75zm-4-5c0-.414-.336-.75-.75-.75h-14.5c-.414 0-.75.336-.75.75s.336.75.75.75h14.5c.414 0 .75-.336.75-.75z" fill-rule="nonzero"/></svg>',
'close' => '<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12.002 2.005c5.518 0 9.998 4.48 9.998 9.997 0 5.518-4.48 9.998-9.998 9.998-5.517 0-9.997-4.48-9.997-9.998 0-5.517 4.48-9.997 9.997-9.997zm0 1.5c-4.69 0-8.497 3.807-8.497 8.497s3.807 8.498 8.497 8.498 8.498-3.808 8.498-8.498-3.808-8.497-8.498-8.497zm0 7.425 2.717-2.718c.146-.146.339-.219.531-.219.404 0 .75.325.75.75 0 .193-.073.384-.219.531l-2.717 2.717 2.727 2.728c.147.147.22.339.22.531 0 .427-.349.75-.75.75-.192 0-.384-.073-.53-.219l-2.729-2.728-2.728 2.728c-.146.146-.338.219-.53.219-.401 0-.751-.323-.751-.75 0-.192.073-.384.22-.531l2.728-2.728-2.722-2.722c-.146-.147-.219-.338-.219-.531 0-.425.346-.749.75-.749.192 0 .385.073.531.219z" fill-rule="nonzero"/></svg>',
];
答案2
得分: 1
以下是更新后的版本。大部分您尝试实现的功能都在这里,所以我不会说您离目标很远。只是有一些可以简化的复杂部分。
function svg_icon(array $atts = []): ?string
{
// 获取提供的值或默认值
$icon = $atts['icon'] ?? false;
$label = $atts['label'] ?? false;
// 这是必需的,如果未设置,就返回null
if (!$icon) {
return null;
}
// 这是我们可能的SVG图标
static $config = [
'arrow' => '<svg aria-hidden="true" role="img" focusable="false" width="24" height="24" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd"><path d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/></svg>',
'hamburger' => '<svg aria-hidden="true" role="img" focusable="false" clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13 16.745c0-.414-.336-.75-.75-.75h-9.5c-.414 0-.75.336-.75.75s.336.75.75.75h9.5c.414 0 .75-.336.75-.75zm9-5c0-.414-.336-.75-.75-.75h-18.5c-.414 0-.75.336-.75.75s.336.75.75.75h18.5c.414 0 .75-.336.75-.75zm-4-5c0-.414-.336-.75-.75-.75h-14.5c-.414 0-.75.336-.75.75s.336.75.75.75h14.5c.414 0 .75-.336.75-.75z" fill-rule="nonzero"/></svg>',
'close' => '<svg aria-hidden="true" role="img" focusable="false" clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12.002 2.005c5.518 0 9.998 4.48 9.998 9.997 0 5.518-4.48 9.998-9.998 9.998-5.517 0-9.997-4.48-9.997-9.998 0-5.517 4.48-9.997 9.997-9.997zm0 1.5c-4.69 0-8.497 3.807-8.497 8.497s3.807 8.498 8.497 8.498 8.498-3.808 8.498-8.498-3.808-8.497-8.498-8.497zm0 7.425 2.717-2.718c.146-.146.339-.219.531-.219.404 0 .75.325.75.75 0 .193-.073.384-.219.531l-2.717 2.717 2.727 2.728c.147.147.22.339.22.531 0 .427-.349.75-.75.75-.192 0-.384-.073-.53-.219l-2.729-2.728-2.728 2.728c-.146.146-.338.219-.53.219-.401 0-.751-.323-.751-.75 0-.192.073-.384.22-.531l2.728-2.728-2.722-2.722c-.146-.147-.219-.338-.219-.531 0-.425.346-.749.75-.749.192 0 .385.073.531.219z" fill-rule="nonzero"/></svg>',
];
// 如果请求的图标不存在,就返回null
if (!$svg = $config[$icon] ?? null) {
return null;
}
// 如果有标签,取消隐藏SVG并设置ARIA属性
if (!empty($label)) {
$svg = str_replace('<svg ', '<svg aria-label="'.esc_attr($label).'"', $svg);
$svg = str_replace('aria-hidden="true"', '', $svg);
}
return $svg;
}
演示链接:https://3v4l.org/HHWJKW#v8.2.6
我要指出的一件事是,我希望这是预期要作为一个shortcode来运行的。如果不是这样的话,我鼓励您将此代码进一步简化为以下内容:https://3v4l.org/UvAjF#v8.2.6
英文:
There's a lot of things that I'd clean up in your function.
First, WordPress's shortcode_atts
can usually be replaced with PHP's null coalescing operator in user-land code. (The shortcode_atts
function also makes a final call to a hook which is why I wouldn't recommend removing it from core or plugins.)
Second, arrays are great for storing things, but I think it really makes code more readable when you can get variables, so I'm pulling the two keys into dedicated variables.
Third, in Sanjay Dihora's original post, they were trying to say that you were using an array of arrays, but you just need an array of strings, so I simplified that.
Fourth, your first preg_replace
call attempted to add code to the selected SVG each time, and that's not necessary, just add that code to the SVGs in the array.
Fifth, no need for the whitespace clean up, the SVGs are already clean as-is.
Lastly, I added some type signatures to the function.
Below is the updated version. The spirit of what you were attempting is mostly here, so I wouldn't say you were very far off. There was just some complicated things that could be simplified.
function svg_icon(array $atts = []): ?string
{
// Get the provided values or a default value
$icon = $atts['icon'] ?? false;
$label = $atts['label'] ?? false;
// This is required, so if it not set bail
if (!$icon) {
return null;
}
// These are our possible SVGs
static $config = [
'arrow' => '<svg aria-hidden="true" role="img" focusable="false" width="24" height="24" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd"><path d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/></svg>',
'hamburger' => '<svg aria-hidden="true" role="img" focusable="false" clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13 16.745c0-.414-.336-.75-.75-.75h-9.5c-.414 0-.75.336-.75.75s.336.75.75.75h9.5c.414 0 .75-.336.75-.75zm9-5c0-.414-.336-.75-.75-.75h-18.5c-.414 0-.75.336-.75.75s.336.75.75.75h18.5c.414 0 .75-.336.75-.75zm-4-5c0-.414-.336-.75-.75-.75h-14.5c-.414 0-.75.336-.75.75s.336.75.75.75h14.5c.414 0 .75-.336.75-.75z" fill-rule="nonzero"/></svg>',
'close' => '<svg aria-hidden="true" role="img" focusable="false" clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12.002 2.005c5.518 0 9.998 4.48 9.998 9.997 0 5.518-4.48 9.998-9.998 9.998-5.517 0-9.997-4.48-9.997-9.998 0-5.517 4.48-9.997 9.997-9.997zm0 1.5c-4.69 0-8.497 3.807-8.497 8.497s3.807 8.498 8.497 8.498 8.498-3.808 8.498-8.498-3.808-8.497-8.498-8.497zm0 7.425 2.717-2.718c.146-.146.339-.219.531-.219.404 0 .75.325.75.75 0 .193-.073.384-.219.531l-2.717 2.717 2.727 2.728c.147.147.22.339.22.531 0 .427-.349.75-.75.75-.192 0-.384-.073-.53-.219l-2.729-2.728-2.728 2.728c-.146.146-.338.219-.53.219-.401 0-.751-.323-.751-.75 0-.192.073-.384.22-.531l2.728-2.728-2.722-2.722c-.146-.147-.219-.338-.219-.531 0-.425.346-.749.75-.749.192 0 .385.073.531.219z" fill-rule="nonzero"/></svg>',
];
// If the requested icon doesn't exist, bail
if (!$svg = $config[$icon] ?? null) {
return null;
}
// If we have a label, un-hide the SVG and set the ARIA attribute
if (!empty($label)) {
$svg = str_replace('<svg ', '<svg aria-label="'.esc_attr($label).'"', $svg);
$svg = str_replace('aria-hidden="true"', '', $svg);
}
return $svg;
}
Demo here: https://3v4l.org/HHWJKW#v8.2.6
One thing I would note is that I'm hoping this is expected to be run as a shortcode. If that's not the case, I would encourage you to simplify this code even further to just this: https://3v4l.org/UvAjF#v8.2.6
答案3
得分: 1
我同意ChrisHaas的一些观点,但不是全部。
-
shortcode_atts()
调用对当前处理没有好处。如果没有传递图标值,或者传递的值不是svg查找数组中的键,那么提前返回null
。 -
从你的svg字符串中提取共同的元素。这将消除代码重复/膨胀,提高可读性和可维护性。
-
使用
sprintf()
干净地为svg模板字符串提供基于变量的标记。 -
你的查找数组是二维的没有意义。使用
str_replace()
操纵你的标记字符串也没有意义。无论是否进行替换,它都会不必要地遍历整个字符串。相反,只有在知道需要时才添加标记。我认为你的修剪和净化没有任何好处,因为除了aria-label
之外,所有标记都是静态的。
代码:
function svg_icon_func(array $atts) {
static $svgTemplates = [
'arrow' => '<svg %s %s width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/></svg>',
'hamburger' => '<svg %s %s stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13 16.745c0-.414-.336-.75-.75-.75h-9.5c-.414 0-.75.336-.75.75s.336.75.75.75h9.5c.414 0 .75-.336.75-.75zm9-5c0-.414-.336-.75-.75-.75h-18.5c-.414 0-.75.336-.75.75s.336.75.75.75h18.5c.414 0 .75-.336.75-.75zm-4-5c0-.414-.336-.75-.75-.75h-14.5c-.414 0-.75.336-.75.75s.336.75.75.75h14.5c.414 0 .75-.336.75-.75z" fill-rule="nonzero"/></svg>',
'close' => '<svg %s %s stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12.002 2.005c5.518 0 9.998 4.48 9.998 9.997 0 5.518-4.48 9.998-9.998 9.998-5.517 0-9.997-4.48-9.997-9.998 0-5.517 4.48-9.997 9.997-9.997zm0 1.5c-4.69 0-8.497 3.807-8.497 8.497s3.807 8.498 8.497 8.498 8.498-3.808 8.498-8.498-3.808-8.497-8.498-8.497zm0 7.425 2.717-2.718c.146-.146.339-.219.531-.219.404 0 .75.325.75.75 0 .193-.073.384-.219.531l-2.717 2.717 2.727 2.728c.147.147.22.339.22.531 0 .427-.349.75-.75.75-.192 0-.384-.073-.53-.219l-2.729-2.728-2.728 2.728c-.146.146-.338.219-.53.219-.401 0-.751-.323-.751-.75 0-.192.073-.384.22-.531l2.728-2.728-2.722-2.722c-.146-.147-.219-.338-.219-.531 0-.425.346-.749.75-.749.192 0 .385.073.531.219z" fill-rule="nonzero"/></svg>',
];
if (!isset($atts['icon'], $svgTemplates[$atts['icon']])) {
return null;
}
$ubiquitousAtts= [
'role="img"',
'focusable="false"',
'clip-rule="evenodd"',
'fill-rule="evenodd"',
];
return sprintf(
$svgTemplates[$atts['icon']],
!empty($atts['label'])
? 'aria-label="' . esc_attr($atts['label']) . '"'
: 'aria-hidden="true"',
implode(' ', $ubiquitousAtts)
);
}
英文:
I agree with some but not all of ChrisHaas's answer.
-
The
shortcode_atts()
call is not beneficial for your current processing. If there is no icon value passed in, or the passed in value is not a key in your svg lookup array, then returnnull
early. -
Abstract the common elements from your svg strings. This will remove code duplication/bloat and improve visibility and maintainability.
-
Use
sprintf()
to cleanly supply the svg template string with its variable-based markup. -
It doesn't make sense for your lookup array to be two dimensional. It also doesn't make sense to manipulate your markup string with
str_replace()
. Whether it make a replacement or not, it will still needlessly traverse the entire string. Instead, only add markup when you know it is needed. I don't see any benefit in your trimming and sanitizing because with the exception ofaria-label
, all of the markup is static.
Code:
function svg_icon_func(array $atts) {
static $svgTemplates = [
'arrow' => '<svg %s %s width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/></svg>',
'hamburger' => '<svg %s %s stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13 16.745c0-.414-.336-.75-.75-.75h-9.5c-.414 0-.75.336-.75.75s.336.75.75.75h9.5c.414 0 .75-.336.75-.75zm9-5c0-.414-.336-.75-.75-.75h-18.5c-.414 0-.75.336-.75.75s.336.75.75.75h18.5c.414 0 .75-.336.75-.75zm-4-5c0-.414-.336-.75-.75-.75h-14.5c-.414 0-.75.336-.75.75s.336.75.75.75h14.5c.414 0 .75-.336.75-.75z" fill-rule="nonzero"/></svg>',
'close' => '<svg %s %s stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12.002 2.005c5.518 0 9.998 4.48 9.998 9.997 0 5.518-4.48 9.998-9.998 9.998-5.517 0-9.997-4.48-9.997-9.998 0-5.517 4.48-9.997 9.997-9.997zm0 1.5c-4.69 0-8.497 3.807-8.497 8.497s3.807 8.498 8.497 8.498 8.498-3.808 8.498-8.498-3.808-8.497-8.498-8.497zm0 7.425 2.717-2.718c.146-.146.339-.219.531-.219.404 0 .75.325.75.75 0 .193-.073.384-.219.531l-2.717 2.717 2.727 2.728c.147.147.22.339.22.531 0 .427-.349.75-.75.75-.192 0-.384-.073-.53-.219l-2.729-2.728-2.728 2.728c-.146.146-.338.219-.53.219-.401 0-.751-.323-.751-.75 0-.192.073-.384.22-.531l2.728-2.728-2.722-2.722c-.146-.147-.219-.338-.219-.531 0-.425.346-.749.75-.749.192 0 .385.073.531.219z" fill-rule="nonzero"/></svg>',
];
if (!isset($atts['icon'], $svgTemplates[$atts['icon']])) {
return null;
}
$ubiquitousAtts= [
'role="img"',
'focusable="false"',
'clip-rule="evenodd"',
'fill-rule="evenodd"',
];
return sprintf(
$svgTemplates[$atts['icon']],
!empty($atts['label'])
? 'aria-label="' . esc_attr($atts['label']) . '"'
: 'aria-hidden="true"',
implode(' ', $ubiquitousAtts)
);
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论