PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
wilcity-shortcodes
/
app
/
ParseShortcodeAtts
<?php namespace WILCITY_SC\ParseShortcodeAtts; trait ParseImageSize { private function parseImageSize() { if (!isset($this->aScAttributes['image_size'])) { return false; } if (strpos($this->aScAttributes['image_size'], ',') !== false) { $imgSize = explode(',', $this->aScAttributes['image_size']); $imgSize = array_map(function ($item) { return trim($item); }, $imgSize); $this->aScAttributes['image_size'] = $imgSize; } return true; } }
[+]
..
[-] CountPostsInTerm.php
[edit]
[-] ParsePostType.php
[edit]
[-] ParseTermArgs.php
[edit]
[-] MergeIsAppRenderingAtts.php
[edit]
[-] ParseTermsInSc.php
[edit]
[-] PrepareHeading.php
[edit]
[-] ParseColumnClasses.php
[edit]
[-] BuildTermQueryArgs.php
[edit]
[-] ParseImageSize.php
[edit]
[-] ParseShortcodeAtts.php
[edit]
[-] GetPostsInTerm.php
[edit]
[-] ParseTermLink.php
[edit]