Thread Starter
a4u
(@a4u)
with the code I posted above I am already adding the description text of the services to the taxanomy output page.. so it’s all good 🙂
Thread Starter
a4u
(@a4u)
All I am doing is adding a description text to service page output like this page:
webtuts.pl/test/corpo/project-services/architecture/
and then afterwards I want the echo to process also shortcodes or html, so if I have more paragraphs is not an output of raw text.
Thread Starter
a4u
(@a4u)
for shortcodes I more or less okwith this solution
<?php $term = get_term_by( ‘slug’, get_query_var( ‘term’ ), get_query_var( ‘taxonomy’ ) ); echo apply_filters(
‘the_content’, $term->description ); ?>