This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Version: GnuPG v1.4.11 (GNU/Linux) | |
mQENBFEjrsMBCAC5DDX5KMGS63Z9PS2vz5Nzpm71FsQUlGPi9vmJn+0H+GejU8U8 | |
cvKj+FfSLszLerWd2hGPIXh2iXO2ZDwsmvU7PNH2AUZXGnje4RvEWaJugVb7598r | |
XkdeeDnQJUXNEiK4CwfumZlPj7czt9Gxt34oKRuR9y8c1Eb9k/WFxI6pkeIQUPYh | |
PcI4VWgLJE17vOgUk8uRg4vpDzpguJhwBh47EAb5ksMQZlEs1TktUl+5/EkYwGM6 | |
BRDLHjktMyYLaV1bOQE6m/7Jd8OLeM1RreYpOOqG6lriKAz8kEK8v9quUZO0f1Io | |
07aHrwYFYddBhtlN9bX2jY8Y5Nvea1GKIZm9ABEBAAG0QFVwZWtzaGEgV2lzaWRh | |
Z2FtYSAoUEhQIFNyaSBMYW5rYSkgPHVwZWtzaGF3aXNpZGFnYW1hQGdtYWlsLmNv |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ | |
/** | |
* WordPress Replace Image URL | |
* | |
* Replaces image url content of the WordPress post content. | |
* | |
* PHP version 5 | |
* WordPress version 3.5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The following was extracted from WordPress Twenty Eleven theme. | |
If you want to integrate pagination yourself modify and used the following code snippet. | |
<nav id="nav-single"> | |
<h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3> | |
<span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">←</span> Previous', 'twentyeleven' ) ); ?></span> | |
<span class="nav-next"><?php next_post_link( '%link', __( 'Next <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?></span> | |
</nav><!-- #nav-single --> | |
You can refer to Codex for changing your code further. |