【问题标题】:WordPress shortcodes not working in postsWordPress短代码在帖子中不起作用
【发布时间】:2015-05-10 18:03:41
【问题描述】:

我正在使用简码制作自定义主题。主题已准备就绪,但现在我需要制作简码。

问题是短代码在我的帖子中不起作用,它们只在我的页面上可见。当我在帖子中添加简码时,帖子什么也不显示。

这里是简码:

function rss_subscribe_link() {  
return 'Enjoy what you\'re reading? <a href="http://www.matthewbarby.com/feed/">Subscribe to our RSS feed here now</a>.'; } 

add_shortcode('rss-subscribe', 'rss_subscribe_link');
add_filter('widget_text', 'do_shortcode');

有人知道如何解决这个问题吗?

你好,

乔伦

【问题讨论】:

    标签: php wordpress shortcode


    【解决方案1】:

    如果您的帖子内容通过get_the_content() 显示,则可能会发生这种情况,get_the_content() 是一个返回内容而不应用默认过滤器(wpautop、do_shortcode 等)的函数,这些过滤器在您使用the_content() 时通常会应用。您能否确认是否是这种情况?

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2014-06-04
      • 1970-01-01
      • 2014-04-11
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多