This file contains 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 echo '';?> |
This file contains 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
<body class="page-parent-about page-aboutsubpage"> | |
<style> | |
.page-parent-about h2 { | |
color:orange; | |
} | |
</style> | |
</body> |
This file contains 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
<div class="container"> | |
<h1><?php the_title(); ?></h1> | |
<?php the_content(); ?> | |
</div> | |
<div class="sidebar about-sidebar"> | |
<h3>Unique About Page Sidebar</h3> | |
<p>Some stuff.</p> | |
</div> |
This file contains 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
<div class="container"> | |
<h1><?php the_title(); ?></h1> | |
<?php the_content(); ?> | |
</div> | |
<?php | |
if (is_page('about') { | |
get_sidebar('about'); | |
This file contains 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
/*Resets and Defaults by healingartswebdesign.com*/ | |
* { | |
box-sizing: border-box; | |
margin:0; | |
padding:0; | |
} | |
::selection { | |
background:#000; | |
color:#FFF; |
This file contains 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
//Place in functions.php | |
//removes WP version from header | |
function healingartsweb_remove_version() { | |
return ''; | |
} | |
add_filter('the_generator', 'healingartsweb_remove_version'); |
This file contains 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 | |
/* | |
---------------------------------------------------------------------------------- | |
Ouput content for blog page (Settings > Static page > posts page) page above posts | |
---------------------------------------------------------------------------------- | |
*/ | |
function wphandcrafted_add_blog_page_content() { | |
if ( is_home() ) { | |
OlderNewer