emerginggeek
Forum Replies Created
-
Fixed! Thanks again for your time, emhr!
Awesome, I am in! Thank you again!
Ok, here is frustration… I went there and created an account, and activated it but it says that I cannot create new topics. No way to contact anyone that I can see. I will try to look for another tutorial.
Thanks again for your time.
I tried return and there was no change. I think I will take it to the forum you mentioned, but I greatly appreciate your time helping me work this through.
lol Sorry for not being clear… I placed this code..
function childtheme_postheader() { echo 'bacon'; } add_filter('thematic_postheader','childtheme_postheader');in the childs theme’s funtion.php.
I was under the impression that this code…
// Information in Post Header // Basically the stuff you see at the top of every post function thematic_postheader() { global $id, $post, $authordata; // The Post Title $posttitle = apply_filters('thematic_postheader_posttitle',$posttitle); // The Post Meta $postmeta = apply_filters('thematic_postheader_postmeta',$postmeta); // Is this a post or a page? if ($post->post_type == 'page' || is_404()) { // If it's a page show only the Post Title $postheader = $posttitle; } else { // If it's a post show the Post Title and The Post Meta $postheader = $posttitle . $postmeta; } // Echo the Post Header echo apply_filters( 'thematic_postheader', $postheader ); // Filter to override default post header }Was already in the the Thematic’s function.php…
I do have the theme activated.
And, I think you are telling me that I have to have the function in the child’s function.php not the themes, is that correct? If so, I am doing that.
I am still trying to get the nomenclature of everything down…
Thanks for all the help. If I have it right, I will take the discussion to that forum. I appreciate your time.
Sorry, it was the article right before that one…
http://themeshaper.com/2009/05/03/filters-wordpress-child-themes/
embhr
Thanks for pointing that out.The tutorial is here http://themeshaper.com/2009/05/25/action-hooks-wordpress-child-themes/
The version is 1.0.3.1
I was under the impression that the function I was looking for was under the functions.php. Still, in the tutorial he has the reader place the snippet I referenced in the child theme functions.php we are creating…
Dave
Forum: Themes and Templates
In reply to: I Broke WordPress!!!Thanks for your suggestion.
I actually do know where the snippet is coming from, just not why or how.
As for twentyeleven or twentytwelve, I have played with them. But what I am doing right now is not for public release or consumption, but a practical excersice to help me learn.
Just curious, are you saying the problem is so simple that I would see it right away if I had done a few more child themes?
Forum: Themes and Templates
In reply to: Using wp_enqueue_styleGreat! Thanks for your help. I am sure that I will be back as I keep working at this!
Forum: Themes and Templates
In reply to: Using wp_enqueue_styleDo I register the stylesheet in the functions.php? I assume I enqueue it in the head.php?
Thanks for your help. I struggle sometimes!
Dave