Created
May 17, 2011 17:13
-
-
Save mushon/976876 to your computer and use it in GitHub Desktop.
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 | |
| /* Log-in | |
| --------------------------------------------------------- */ | |
| //here I will need to add a login bar for the site | |
| function classlog_login() { | |
| //possibly relevant template tags: | |
| //wp_register() | |
| //wp_loginout() | |
| } | |
| //I will uncomment this when it's ready: | |
| //add_action('thematic_before','classlog_login'); | |
| /* Header | |
| --------------------------------------------------------- */ | |
| // Remove the "access" from the header | |
| function remove_thematic_branding() { | |
| remove_action('thematic_header','thematic_access',9); | |
| } | |
| add_action('init','remove_thematic_branding'); | |
| // Add search & the custom menu under the header | |
| function childtheme_header_extension() { | |
| //not sure how to do this yet | |
| } | |
| //I will uncomment this when it's ready: | |
| //add_action('thematic_belowheader','childtheme_header_extension'); | |
| /* Post Structure | |
| --------------------------------------------------------- */ | |
| // Make the default index loop show only excerpts | |
| function classlog_content() { | |
| /* | |
| if it's the homepage { | |
| //show 'excerpt'; | |
| } else { | |
| // show the full thing | |
| } | |
| } | |
| //I will uncomment this when it's ready: | |
| add_filter('thematic_content','classlog_content'); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment