tfalkowski 0 Report post Posted March 21, 2011 By default platform pro takes a lot of liberties with misc filler text.. For instance the Author Date Category banner under each post title. On Date In Category By Author... etc.. is there a way to easily change the text (On, In, By)? Thanks in advance, -Thomas Share this post Link to post Share on other sites
Kate 3 Report post Posted March 21, 2011 Hi Thomas, You would have to use a filter on that "meta" function. Share this post Link to post Share on other sites
tfalkowski 0 Report post Posted March 21, 2011 sorry, I am still rather new to this. Can you point me in the direction of an example of how to do this? Share this post Link to post Share on other sites
cmunns 16 Report post Posted March 21, 2011 Essentially you take part of the function that you want. For example this would replace your entire metabar with just the date portion. You can remove the "on" by deleting it in the function below. Add this filter to your functions.php file ` add_filter('pagelines_post_metabar', 'your_function'); function your_function($metabar){ $metabar = sprintf( '%s [post_date] ', __('On','pagelines') ); return $metabar; } ` Share this post Link to post Share on other sites
tfalkowski 0 Report post Posted March 22, 2011 Thank you. Share this post Link to post Share on other sites