0

我创建了一个 wp 插件,现在,每当我通过

a) 编辑器,b) 在 Sublime Text2 中手动删除,然后从 wp 中删除,然后重新上传更改后的版本

并使用应该触发插件的短代码转到页面,我没有看到任何变化。我现在只有几句话,在它应该包含的 php 页面中没有任何 html 标签,它仍然显示那里的旧 html 表

这是我在 WP 中“安装”插件时用来激活插件的代码

    register_activation_hook( __FILE__, 'act');

function act(){
  add_option('Activated_Plugin','Plugin-Slug');
  /* activation code here */
}


function getxml( $atts ){
 include 'getxml.php';
}
add_shortcode( 'boixml', 'getxml' );
4

1 回答 1

0

你是安装 的W3 Total Cache还是WP Super Cache插件的?

试试那个链接,它可能会给你解决这个问题的关键

http://codex.wordpress.org/WordPress_Optimization/Caching

于 2013-06-24T16:54:56.853 回答