appthemes_list_comments

This function executes in the comments-[post_type].php file and loads in the custom post type comments. This is where the comments are hooked and loaded from.

Usage

This hook provides no parameters. You use this hook by having your function echo output to the browser, or by having it perform background tasks. Your functions shouldn’t return, and shouldn’t take any parameters.

add_action( 'appthemes_list_comments', 'your_function' );

Example

<?php
// remove the default ClassiPress comments code
remove_action( 'appthemes_list_comments', 'cp_list_comments' ); 
 
// now load your own comments code
function insert_your_code_block() { 
    global $post;
 
    wp_list_comments( array( 'callback' => 'my_custom_comments_callback', 'type' => 'comment' ) );
}
add_action( 'appthemes_list_comments', 'insert_your_code_block' ); 
?>

Changelog

  • since 1.1

Source File

appthemes_list_comments() is located in comments-[post_type].php.

Your rating: none
Rating: 0 - 0 votes

Popular Add-ons

AutoResponder AutoRegistration

Automatically integrates WordPress registration with major autoresponders.


(5)
$39

GeoReg

Captures detailed geographic info with new user registrations.


(10)
$29

Price Comparer

Jump start your Price Comparision site with products from Amazon,…


(3)
$29