graceful_fail

Definition:
function graceful_fail( $message ) {}

Parameters

  • $message

Defined filters

  • graceful_fail
    apply_filters( 'graceful_fail', $message )
  • graceful_fail_template
    apply_filters( 'graceful_fail_template',

    '<!DOCTYPE html>

    <html xmlns="http://www.w3.org/1999/xhtml"><head profile="http://gmpg.org/xfn/11">

    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

    <title>Error!</title>

    <style type="text/css">

    img {

    border: 0;

    }

    body {

    line-height: 1.6em; font-family: Georgia, serif; width: 390px; margin: auto;

    text-align: center;

    }

    .message {

    font-size: 22px;

    width: 350px;

    margin: auto;

    }

    </style>

    </head>

    <body>

    <p class="message">%s</p>

    </body>

    </html>' )

Source code

function graceful_fail( $message ) {

	_deprecated_function( __FUNCTION__, '3.0', 'wp_die()' );

	$message = apply_filters( 'graceful_fail', $message );

	$message_template = apply_filters( 'graceful_fail_template',

'<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml"><head profile="http://gmpg.org/xfn/11">

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

<title>Error!</title>

<style type="text/css">

img {

	border: 0;

}

body {

line-height: 1.6em; font-family: Georgia, serif; width: 390px; margin: auto;

text-align: center;

}

.message {

	font-size: 22px;

	width: 350px;

	margin: auto;

}

</style>

</head>

<body>

<p class="message">%s</p>

</body>

</html>' );

	die( sprintf( $message_template, $message ) );

}

1921

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: