mikedacre
Forum Replies Created
-
Forum: Plugins
In reply to: [Enhanced Category Pages] Search Enhanced Category Pages?I manged to figure out how to do this, so I have one more question:
– Is there a way to get the excerpt for an Enhanced Category Page? Right now if you go to the Firmicutes search results, I have the category at the top, but I can’t figure out how to show an excerpt.
Current code:
$terms = get_terms( 'category', array( 'name__like' => $s, 'hide_empty' => true // Optional ) ); if ( count($terms) > 0 ){ echo '<h1 style="padding: 20px 0 0 20px;">Taxa</h1>'; foreach ( $terms as $term ) { // echo $term; $child = $term->name; $url = esc_url( get_term_link( $term ) ); echo '<article class="entry entryTypePostExcerpt">'; echo '<div class="entryContainer">'; echo '<div class="entryHeader">'; echo "<h2 class='entryTitle'>".$child."</h2>"; echo '</div>'; echo '</div>'; echo '</article>'; } }
Forum: Plugins
In reply to: [WP Edit] FullscreenBack to the drawing board. For reasons I cannot figure out, Ctrl/Cmd-Alt-F just stopped working.
Do you know how I can make TinyMCE actually full screen?
Forum: Plugins
In reply to: [Zotpress] Spinning wheel with no post with editus extensionIt turns out this is entirely the fault of editus not recognizing the shortcode and no fault of your plugin, so I am closing this here. If I find a solution from editus I will post it here for future reference.
Forum: Plugins
In reply to: [WP Edit] FullscreenCall off the army, it turns out that
Ctrl-Alt-F
still works.Sorry for the waste of a support request, and thanks for the great plugin.