1

我可以在 Wordpress 插件中使用什么操作或过滤器来动态替换 404 错误页面的内容(即不是页眉或页脚)?

基本上,我正在寻找与the_content filter等效的 404 错误页面,它将过滤现有页面的内容。

感谢您的时间。

注意:我知道我可以手动修改当前主题的 404 错误页面,但这不是我想要达到的效果。

4

3 回答 3

1

解决方案取决于 404.php 文件的内容。如果此文件包含静态文本,例如

_e( 'It seems we can’t find what you’re looking for...', 'twentyeleven' );

您可以添加自己的过滤器

apply_filters( 'my_404_content', 'Default 404 message' );

并在functions.php(或插件中)

add_filter( 'my_404_content', 'replace_404_message' );
function replace_404_message($message) {
    return 'Error 404 - '.$message;
}

如果 404.php 使用内置的 WP 功能来显示页面内容,您应该检查它们支持哪些过滤器。

于 2013-01-26T19:09:49.620 回答
1

您也许可以添加the_content带有条件is_404部分的过滤器:

function content_404($content) {
  if (is_404()) {
    // do some stuff with $content
  }
  // no matter what,
  return $content;
} 

add_filter( 'the_content', 'content_404' );

请注意,这确实假定404.php页面模板具有the_content适当的模板标签。

于 2013-01-26T19:14:41.810 回答
1

来自这个 WordPress 答案:如何在不修改主题的情况下控制自定义帖子类型的输出?

插件文件:

<?php
/*
Plugin Name: Plugin 404 Page
Plugin URI: http://stackoverflow.com/questions/14539884
Description: Use the plugin's template file to render a custom 404.php
Author: brasofilo
Author URI: https://wordpress.stackexchange.com/users/12615/brasofilo
Version: 2013.26.01
License: GPLv2
*/
class Universal_Template
{
    public function __construct()
    {       
        $this->url = plugins_url( '', __FILE__ );   
        $this->path = plugin_dir_path( __FILE__ );
        add_action( 'init', array( $this, 'init' ) );
   }

    public function init() 
    {
        add_filter( 'template_include', array( $this, 'template_404' ) );
    }

    public function template_404( $template ) 
    {
        if ( is_404() )
            $template = $this->path . '/404.php';

        return $template;
    }
}

$so_14539884 = new Universal_Template();

在插件文件夹中,有一个名为404.php

<?php
/**
 * The template for displaying 404 pages (Not Found).
 *
 * @package WordPress
 * @subpackage Twenty_Twelve
 * @since Twenty Twelve 1.0
 */

get_header(); ?>

    <div id="primary" class="site-content">
        MY 404!
    </div><!-- #primary -->

<?php get_footer(); ?>
于 2013-01-26T19:31:06.477 回答