尝试从帖子内容中删除图库短代码并保存在变量中以供模板中的其他位置使用。新的Wordpress图库工具非常适合选择他们想要的图像并分配字幕,希望使用它来创建图库,然后将其从前端的内容中拉出来。
所以这个小剪辑适用于移除图库并重新应用格式...但是我想保存该图库的短代码。
$content = strip_shortcodes( get_the_content() );
$content = apply_filters('the_content', $content);
echo $content;
希望保存短代码,以便将其解析为数组并用于在前端重新创建自定义图库设置。我试图保存的这个短代码的一个例子是......
[gallery ids="1079,1073,1074,1075,1078"]
任何建议都将不胜感激。
答案 0 :(得分:6)
从帖子内容中获取First Gallery短代码的功能:
// Return first gallery shortcode
function get_shortcode_gallery ( $post = 0 ) {
if ( $post = get_post($post) ) {
$post_gallery = get_post_gallery($post, false);
if ( ! empty($post_gallery) ) {
$shortcode = "[gallery";
foreach ( $post_gallery as $att => $val ) {
if ( $att !== 'src') {
if ( $att === 'size') $val = "full"; // Set custom attribute value
$shortcode .= " ". $att .'="'. $val .'"'; // Add attribute name and value ( attribute="value")
}
}
$shortcode .= "]";
return $shortcode;
}
}
}
// Example of how to use:
echo do_shortcode( get_shortcode_gallery() );
从帖子内容中删除第一个图库短代码的功能:
// Deletes first gallery shortcode and returns content
function strip_shortcode_gallery( $content ) {
preg_match_all( '/'. get_shortcode_regex() .'/s', $content, $matches, PREG_SET_ORDER );
if ( ! empty( $matches ) ) {
foreach ( $matches as $shortcode ) {
if ( 'gallery' === $shortcode[2] ) {
$pos = strpos( $content, $shortcode[0] );
if ($pos !== false)
return substr_replace( $content, '', $pos, strlen($shortcode[0]) );
}
}
}
return $content;
}
// Example of how to use:
$content = strip_shortcode_gallery( get_the_content() ); // Delete first gallery shortcode from post content
$content = str_replace( ']]>', ']]>', apply_filters( 'the_content', $content ) ); // Apply filter to achieve the same output that the_content() returns
echo $content;
答案 1 :(得分:2)
只需使用get_shortcode_regex():
<?php
$pattern = get_shortcode_regex();
preg_match_all('/'.$pattern.'/s', $post->post_content, $shortcodes);
?>
将返回内容中所有短代码的数组,然后您可以在任何地方输出,如下所示:
<?php
echo do_shortcode($shortcodes[0][1]);
?>
同样,您可以使用数组条目检查内容中的短代码并使用str_replace()删除它们:
<?php
$content = $post->post_content;
$content = str_replace($shortcodes[0][1],'',$content);
?>
答案 2 :(得分:0)
像$gallery = do_shortcode('[gallery]');
这样的东西可能有用。