Is it acceptable to build functionality into a theme built for a client? [closed]

while agreeing 95% with Drew’s answer I would like to attend to another point It’s normally advised to not include custom types or taxonomies in themes as the themes will be less useful to other users, and would not be accepted by the WordPress theme repository. The word of the maintainers of the wordpress.org repository … Read more

Display an image instead of tag name?

A clean and semantic way to do it would be with CSS. First, the PHP: <div class=”entry-meta”> <span class=”term-links”> <?php foreach ( get_the_terms( $post->ID, ‘region’) as $term ) : ?> <a href=”https://wordpress.stackexchange.com/questions/233793/<?php echo esc_url( get_term_link( $term->term_id ) ) ?>”>Region: <span class=”<?php echo $term->slug ?>”><?php echo $term->name ?></span></a> <?php endforeach; ?> </span> </div> Next, the CSS: … Read more

Removing the “Popular Terms” area from the Taxonomy Edit Screen in the Admin Area

Oh, I love it when you give me an easy one. Starts to make up for all those harder ones… (well, partly. 😉 So what you want is to replace this: (source: mikeschinkel.com) With this: (source: mikeschinkel.com) How? Use the ‘wp_tag_cloud’ hook which you can put into your theme’s functions.php file or in a .php … Read more