我用这个来获得我的帖子:
$the_slug = \'kontakt\';
$args=array(
\'name\' => $the_slug,
\'post_type\' => \'post\',
\'post_status\' => \'publish\',
\'posts_per_page\' => 1,
\'suppress_filters\' => false
);
$my_posts = get_posts( $args );
由此产生的职位是:
但是文本仍然包含插件的短代码
[wpgmza id="1"]
我使用了插件
https://wordpress.org/plugins/wp-google-maps
我是否使用了一种解析帖子的方法,以某种方式阻止插件工作?
我是否应该使用文本编辑器添加短代码?