tjrutkowski+ 3 Report post Posted January 4, 2011 Hello: I see the Platform options to select post byline metadata. Additionally, I would like to include additional Custom Fields that I have added to my individual posts. Can you tell me how to add a Custom Field value to my Byline? Many thanks! site: www.bookinwithsunny.com Share this post Link to post Share on other sites
Andrew 207 Report post Posted January 4, 2011 There is a hook for this... try adding code (to Base) as follows: ` add_action('pagelines_loop_metabar_end', 'addthistobyline'); function addthistobyline(){?> my byline code or html <?php } ` Share this post Link to post Share on other sites
tjrutkowski+ 3 Report post Posted January 5, 2011 That's it, thank you very much! Share this post Link to post Share on other sites
tjrutkowski+ 3 Report post Posted January 22, 2011 With 1.2.2 is seems that the pagelines_loop_metabar_end hook has been removed. Is there a new way for me to modify the byline section? Thanks! Share this post Link to post Share on other sites
catrina 103 Report post Posted January 22, 2011 If you've tried it already and it isn't working, there should be a new way. I'll mark this for admin attention. Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
Andrew 207 Report post Posted January 22, 2011 Hey TJ, Good catch, yes we changed out the hooks for filters. Which gives you actual control of the content. so to edit: ` add_filter('pagelines_post_metabar', 'customize_metabar'); function customize_metabar($metabar){ $mymetabar = 'test'.$metabar; //$metabar is the original metabar return $mymetabar; } ` Share this post Link to post Share on other sites
tjrutkowski+ 3 Report post Posted January 22, 2011 It took me a bit to convert to the hook, but I got it. Thank you and I'd love to see these types of changes in the notes or change logs...if I missed that please point me there! --TJ Share this post Link to post Share on other sites