3

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

4

1 回答 1

2

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

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

或者template_include过滤器可用于提供不同的自定义模板。例如

function choose_template($template)
{
  if( $template == 'plugin-template-page.php' )
  {
    $template = 'my-template-page.php';
  }
  return $template;
}
add_filter('template_include','choose_template');
于 2012-11-29T08:37:56.283 回答