WordPress是否像Joomla一样提供插件覆盖功能?

时间:2012-11-29 06:50:07

标签: wordpress joomla wordpress-plugin

我想以类似于Joomla的方式覆盖WordPress插件的输出,这可能吗?

1 个答案:

答案 0 :(得分:2)

您可以使用过滤器在输出数据之前更改数据。

http://codex.wordpress.org/Plugin_API#Filters

template_include过滤器可用于提供不同的自定义模板。 e.g。

function choose_template($template)
{
  if( $template == 'plugin-template-page.php' )
  {
    $template = 'my-template-page.php';
  }
  return $template;
}
add_filter('template_include','choose_template');