Reputation: 3010
I have a custom php cms managing multiple sites from one path with a wildcard configuration. I'd like to add a comment system for each unique domain+uri, and am interested in what's currently available before attempting something custom. Can you recommend any that you're aware of?
Upvotes: 1
Views: 2292
Reputation: 11
Add following code to your functions.php file.
function custom_hook_after_logo() {
?>
<div class="header-search-form">
<?php echo get_search_form( false ); ?>
</div>
<?php
}
add_action( 'rtp_hook_after_logo', 'custom_hook_after_logo' );
and add following style to your style.css file
.header-search-form{ float : right; }
your requirement will be accomplished by this.
Upvotes: 1
Reputation: 8411
http://ratherodd.com/commentator/ might be useful. But Even this looks pretty good
Upvotes: 1