J'ai plusieurs shortcodes dans le post:
[section title="first"]
[section title="second"]
[section title="third"]
Je veux extraire toutes les titre valeurs (c'est-à-dire premier, deuxième, troisième ) de la fonction externe, c'est ce que j'essaie de faire:
$pattern = get_shortcode_regex();
preg_match('/'.$pattern.'/s', $post->post_content, $matches);
if (is_array($matches) && $matches[2] == 'section') {
$attribureStr = str_replace (" ", "&", trim ($matches[3]));
$attribureStr = str_replace ('"', '', $attributeStr);
$attributes = wp_parse_args ($attributeStr);
echo $attributes["title"];
}
Le problème est que le code extrait la valeur uniquement à partir du premier shortcode. Comment le faire fonctionner pour chaque shortcode dans le post?
Si disponible, j'utiliserais le:
shortcode_atts_{$shortcode}
filtre pour collecter les attributs d'un shortcode donné.
Exemple:
$text = '
[gallery]
[gallery ids="1,2" link="file"]
[gallery ids="3"]
[caption id="attachment_6" align="alignright" width="300"]
';
if( class_exists( 'WPSE_CollectShortcodeAttributes' ) )
{
$o = new WPSE_CollectShortcodeAttributes;
$out = $o->init( $shortcode = 'gallery', $text )->get_attributes();
print_r( $out );
}
où notre classe d'assistance est définie comme:
class WPSE_CollectShortcodeAttributes
{
private $text = '';
private $shortcode = '';
private $atts = array();
public function init( $shortcode = '', $text = '' )
{
$this->shortcode = esc_attr( $shortcode );
if( shortcode_exists( $this->shortcode )
&& has_shortcode( $text, $this->shortcode )
)
{
add_filter( "shortcode_atts_{$this->shortcode}",
array( $this, 'collect' ), 10, 3 );
$this->text = do_shortcode( $text );
remove_filter( "shortcode_atts_{$this->shortcode}",
array( $this, 'collect' ), 10 );
}
return $this;
}
public function collect( $out, $pair, $atts )
{
$this->atts[] = $atts;
return $out;
}
public function get_attributes()
{
return $this->atts;
}
}
La sortie de notre exemple est:
Array
(
[0] => Array
(
[0] =>
)
[1] => Array
(
[ids] => 1,2
[link] => file
[orderby] => post__in
[include] => 1,2
)
[2] => Array
(
[ids] => 3
[orderby] => post__in
[include] => 3
)
)
ainsi, pour le shortcode gallery
, nous obtenons également des attributs supplémentaires.
Mais tous les codes courts ne prennent pas en charge le filtre ci-dessus. Dans ce cas, vous pouvez essayer les solutions suivantes:
/**
* Grab all attributes for a given shortcode in a text
*
* @uses get_shortcode_regex()
* @uses shortcode_parse_atts()
* @param string $tag Shortcode tag
* @param string $text Text containing shortcodes
* @return array $out Array of attributes
*/
function wpse172275_get_all_attributes( $tag, $text )
{
preg_match_all( '/' . get_shortcode_regex() . '/s', $text, $matches );
$out = array();
if( isset( $matches[2] ) )
{
foreach( (array) $matches[2] as $key => $value )
{
if( $tag === $value )
$out[] = shortcode_parse_atts( $matches[3][$key] );
}
}
return $out;
}
Exemple:
$text = '
[gallery]
[gallery ids="1,2" link="file"]
[gallery ids="3"]
[caption id="attachment_6" align="alignright" width="300"][/caption]
';
$out = wpse172275_get_all_attributes( 'gallery', $text );
print_r( $out );
avec la sortie:
Array
(
[0] =>
[1] => Array
(
[ids] => 1,2
[link] => file
)
[2] => Array
(
[ids] => 3
)
)
J'espère que vous pourrez adapter cela à vos besoins.