短码内的动态号码

时间:2011-04-06 作者:Sgt Floyd Pepper

我需要写一个动态短代码。原文是这样写的:[宽度=“940”高度=“200”…]

我需要这个:[…宽度=”<php>“高度=”<php>“……]

我怎样才能做到这一点??

谢谢,弗洛伊德

1 个回复
SO网友:Rarst

短码是纯文本包装器,专门针对PHP代码不可用或不应使用的情况。

您可以将其连接到字符串并使用do_shortcode().您可以查找为短代码供电的函数(设置为add_shortcode()) 并直接在PHP代码中使用它

结束

相关推荐

Nested Shortcode Detection

如果您熟悉此代码<?php $pattern = get_shortcode_regex(); preg_match(\'/\'.$pattern.\'/s\', $posts[0]->post_content, $matches); if (is_array($matches) && $matches[2] == \'YOURSHORTCODE\') { //shortcode is being used }&#