REQUEST_URI: /code-sample/

PHP_SELF: /index.php

DOCUMENT_ROOT: /sites/chris-pearson/phpwn.com/wordpress

SCRIPT_FILENAME: /sites/chris-pearson/phpwn.com/wordpress/index.php

SCRIPT_NAME: /index.php

HTTP_HOST: phpwn.com

HTTPS: on

QUERY_STRING:

HTTP_REFERER: https://phpwn.com/code-sample

THESIS_SKIN: /sites/chris-pearson/phpwn.com/wordpress/wp-content/themes/thesis/lib/core/skin

ABSPATH: /sites/chris-pearson/phpwn.com/wordpress/

URL: https://phpwn.com/code-sample/

Base URL: https://phpwn.com

Array ( [scheme] => https [host] => phpwn.com [path] => /code-sample/ )

Slug string is /code-sample

No viable parent for this URL.

New matched slug is code-sample.

Parent dir is .

New matched parent is .

New ancestor is code-sample.

Original parsed URL path is /code-sample/

Chopped up URL path is /code-sample/

Basename is code-sample

esc_url: https://phpwn.com/wp-admin/admin.php?page=thesis&canvas=thesis_focus__content

esc_url_raw: https://phpwn.com/wp-admin/admin.php?page=thesis&canvas=thesis_focus__content

Have You Sampled Your Code Today?

One particular HTML element that has been taking up way too much of my time lately is the <code> tag. Different browsers will render the contents of this tag differently depending on how the CSS properties (such as line-height, font, and/or font-size) are declared.

It is a constant battle to ensure that elements will render correctly, and even when you think you’ve gotten everything worked out perfectly, you may find that Safari, for instance, doesn’t know what to do with an unordered list of encoded text:

  • Safari
  • may not
  • render this
  • worth a damn

And even when you’ve gotten all that figured out, you still have to ensure that the <pre> tag is styled properly and renders consistently across a wide range of modern browsers.

protected function translate() {
	$this->title = __('My Box Title', $this->_class);
	$this->name = __('My Instance Name', $this->_class);
}
code {
	font: 0.92857em Consolas, Monaco, Courier;
	color: #050;
}

Also test http://superlongurl.com/thisshouldnotbehere/peoplefailthiswayanyway/bummer/nostoppingthem.html

Sometimes, I might want to display specialized content instead of my primary Modular Content.

0 comments… add one

Leave a Reply

Your email address will not be published. Required fields are marked *