Error
Call to undefined function twentyfifteen_comment_nav() Error thrown with message "Call to undefined function twentyfifteen_comment_nav()" Stacktrace: #5 Error in /home/qsb5unxv31s9/domains/s2member.net/html/wp-content/themes/s2membernet/comments.php:63 #4 require in /home/qsb5unxv31s9/domains/s2member.net/html/wp-includes/comment-template.php:1554 #3 comments_template in /home/qsb5unxv31s9/domains/s2member.net/html/wp-content/themes/s2membernet/page.php:9 #2 include in /home/qsb5unxv31s9/domains/s2member.net/html/wp-includes/template-loader.php:106 #1 require_once in /home/qsb5unxv31s9/domains/s2member.net/html/wp-blog-header.php:19 #0 require in /home/qsb5unxv31s9/domains/s2member.net/html/index.php:17
Stack frames (6)
5
Error
/
home
/
qsb5unxv31s9
/
domains
/
s2member.net
/
html
/
wp-content
/
themes
/
s2membernet
/
comments.php
63
4
require
/
home
/
qsb5unxv31s9
/
domains
/
s2member.net
/
html
/
wp-includes
/
comment-template.php
1554
3
comments_template
/
home
/
qsb5unxv31s9
/
domains
/
s2member.net
/
html
/
wp-content
/
themes
/
s2membernet
/
page.php
9
2
include
/
home
/
qsb5unxv31s9
/
domains
/
s2member.net
/
html
/
wp-includes
/
template-loader.php
106
1
require_once
/
home
/
qsb5unxv31s9
/
domains
/
s2member.net
/
html
/
wp-blog-header.php
19
0
require
/
home
/
qsb5unxv31s9
/
domains
/
s2member.net
/
html
/
index.php
17
/
home
/
qsb5unxv31s9
/
domains
/
s2member.net
/
html
/
wp-content
/
themes
/
s2membernet
/
comments.php
                );
            }
            ?>
        </h2>
 
        <?php // twentyfifteen_comment_nav(); ?>
 
        <ol class="comment-list">
            <?php
                wp_list_comments(
                    array(
                        'style'       => 'ol',
                        'short_ping'  => true,
                        'avatar_size' => 56,
                    )
                );
            ?>
        </ol><!-- .comment-list -->
 
        <?php twentyfifteen_comment_nav(); ?>
 
    <?php endif; // have_comments() ?>
 
    <?php
        // If comments are closed and there are comments, let's leave a little note, shall we?
    if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
        ?>
    <p class="no-comments"><?php _e( 'Comments are closed.', 'twentyfifteen' ); ?></p>
    <?php endif; ?>
 
    <?php comment_form(); ?>
 
</div><!-- .comments-area -->
 
Arguments
  1. "Call to undefined function twentyfifteen_comment_nav()"
    
/
home
/
qsb5unxv31s9
/
domains
/
s2member.net
/
html
/
wp-includes
/
comment-template.php
        $overridden_cpage = true;
    }
 
    if ( ! defined( 'COMMENTS_TEMPLATE' ) ) {
        define( 'COMMENTS_TEMPLATE', true );
    }
 
    $theme_template = STYLESHEETPATH . $file;
 
    /**
     * Filters the path to the theme template file used for the comments template.
     *
     * @since 1.5.1
     *
     * @param string $theme_template The path to the theme template file.
     */
    $include = apply_filters( 'comments_template', $theme_template );
 
    if ( file_exists( $include ) ) {
        require $include;
    } elseif ( file_exists( TEMPLATEPATH . $file ) ) {
        require TEMPLATEPATH . $file;
    } else { // Backward compat code will be removed in a future release.
        require ABSPATH . WPINC . '/theme-compat/comments.php';
    }
}
 
/**
 * Displays the link to the comments for the current post ID.
 *
 * @since 0.71
 *
 * @param false|string $zero      Optional. String to display when no comments. Default false.
 * @param false|string $one       Optional. String to display when only one comment is available. Default false.
 * @param false|string $more      Optional. String to display when there are more than one comment. Default false.
 * @param string       $css_class Optional. CSS class to use for comments. Default empty.
 * @param false|string $none      Optional. String to display when comments have been turned off. Default false.
 */
function comments_popup_link( $zero = false, $one = false, $more = false, $css_class = '', $none = false ) {
    $post_id    = get_the_ID();
/
home
/
qsb5unxv31s9
/
domains
/
s2member.net
/
html
/
wp-content
/
themes
/
s2membernet
/
page.php
<?php 
 
get_header();
 
if (have_posts()) {
    the_post();
    echo '<h1>', the_title(), '</h1>';
    the_content();
    comments_template();
}
 
get_footer();
 
/
home
/
qsb5unxv31s9
/
domains
/
s2member.net
/
html
/
wp-includes
/
template-loader.php
            }
 
            break;
        }
    }
 
    if ( ! $template ) {
        $template = get_index_template();
    }
 
    /**
     * Filters the path of the current template before including it.
     *
     * @since 3.0.0
     *
     * @param string $template The path of the template to include.
     */
    $template = apply_filters( 'template_include', $template );
    if ( $template ) {
        include $template;
    } elseif ( current_user_can( 'switch_themes' ) ) {
        $theme = wp_get_theme();
        if ( $theme->errors() ) {
            wp_die( $theme->errors() );
        }
    }
    return;
}
 
Arguments
  1. "/home/qsb5unxv31s9/domains/s2member.net/html/wp-content/themes/s2membernet/page.php"
    
/
home
/
qsb5unxv31s9
/
domains
/
s2member.net
/
html
/
wp-blog-header.php
<?php
/**
 * Loads the WordPress environment and template.
 *
 * @package WordPress
 */
 
if ( ! isset( $wp_did_header ) ) {
 
    $wp_did_header = true;
 
    // Load the WordPress library.
    require_once __DIR__ . '/wp-load.php';
 
    // Set up the WordPress query.
    wp();
 
    // Load the theme template.
    require_once ABSPATH . WPINC . '/template-loader.php';
 
}
 
Arguments
  1. "/home/qsb5unxv31s9/domains/s2member.net/html/wp-includes/template-loader.php"
    
/
home
/
qsb5unxv31s9
/
domains
/
s2member.net
/
html
/
index.php
<?php
/**
 * Front to the WordPress application. This file doesn't do anything, but loads
 * wp-blog-header.php which does and tells WordPress to load the theme.
 *
 * @package WordPress
 */
 
/**
 * Tells WordPress to load the WordPress theme and output it.
 *
 * @var bool
 */
define( 'WP_USE_THEMES', true );
 
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
 
Arguments
  1. "/home/qsb5unxv31s9/domains/s2member.net/html/wp-blog-header.php"
    

Environment & details:

Key Value
_s2member_vars
"ccap..ccap..issue1..page..731..L2hvay10ZXN0L2lzc3VlLTEvcGFuZWwtMQ=="
_s2member_sig
"1701399740-415209e899bd22b7339b42b96f281dc2"
_s2member_seeking
array:3 [
  "type" => "page"
  "page" => "731"
  "_uri" => "L2hvay10ZXN0L2lzc3VlLTEvcGFuZWwtMQ=="
]
_s2member_req
array:2 [
  "type" => "ccap"
  "ccap" => "issue1"
]
_s2member_res
array:1 [
  "type" => "ccap"
]
s2member_seeking
"page-731"
s2member_ccap_req
"issue1"
empty
empty
empty
empty
Key Value
SERVER_SOFTWARE
"Apache"
REQUEST_URI
"/about?_s2member_vars=ccap..ccap..issue1..page..731..L2hvay10ZXN0L2lzc3VlLTEvcGFuZWwtMQ%3D%3D&_s2member_sig=1701399740-415209e899bd22b7339b42b96f281dc2"
LSPHP_ENABLE_USER_INI
"on"
PATH
"/usr/local/bin:/usr/bin:/bin"
TEMP
"/tmp"
TMP
"/tmp"
TMPDIR
"/tmp"
PWD
"/"
HTTP_ACCEPT
"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
HTTP_ACCEPT_ENCODING
"br,gzip"
HTTP_ACCEPT_LANGUAGE
"en-US,en;q=0.5"
HTTP_CONNECTION
"Keep-Alive"
CONTENT_LENGTH
"0"
HTTP_HOST
"s2member.net"
HTTP_USER_AGENT
"CCBot/2.0 (https://commoncrawl.org/faq/)"
REDIRECT_UNIQUE_ID
"ZWlMvAko6xYU_ChKWWMVZAAAAK0"
REDIRECT_SCRIPT_URL
"/about"
REDIRECT_SCRIPT_URI
"http://s2member.net/about"
REDIRECT_USER_ID
"9037212"
REDIRECT_DATABASE_SERVER
"localhost"
REDIRECT_HTTP_AUTHORIZATION
""
REDIRECT_STATUS
"200"
UNIQUE_ID
"ZWlMvAko6xYU_ChKWWMVZAAAAK0"
SCRIPT_URL
"/about"
SCRIPT_URI
"http://s2member.net/about"
USER_ID
"9037212"
DATABASE_SERVER
"localhost"
HTTP_AUTHORIZATION
""
SERVER_SIGNATURE
""
SERVER_NAME
"s2member.net"
SERVER_ADDR
"50.62.220.192"
SERVER_PORT
"80"
REMOTE_ADDR
"35.172.165.64"
DOCUMENT_ROOT
"/home/qsb5unxv31s9/domains/s2member.net/html"
REQUEST_SCHEME
"http"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/home/qsb5unxv31s9/domains/s2member.net/html"
SERVER_ADMIN
"webmaster@s2member.net.cristianlavaque.com"
SCRIPT_FILENAME
"/home/qsb5unxv31s9/domains/s2member.net/html/index.php"
REMOTE_PORT
"59846"
REDIRECT_URL
"/about"
REDIRECT_QUERY_STRING
"_s2member_vars=ccap..ccap..issue1..page..731..L2hvay10ZXN0L2lzc3VlLTEvcGFuZWwtMQ%3D%3D&_s2member_sig=1701399740-415209e899bd22b7339b42b96f281dc2"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
"_s2member_vars=ccap..ccap..issue1..page..731..L2hvay10ZXN0L2lzc3VlLTEvcGFuZWwtMQ%3D%3D&_s2member_sig=1701399740-415209e899bd22b7339b42b96f281dc2"
SCRIPT_NAME
"/index.php"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1701399740.8606
REQUEST_TIME
1701399740
Key Value
LSPHP_ENABLE_USER_INI
"on"
PATH
"/usr/local/bin:/usr/bin:/bin"
TEMP
"/tmp"
TMP
"/tmp"
TMPDIR
"/tmp"
PWD
"/"
DATABASE_SERVER
"localhost"
SITE_ROOT
"/home/qsb5unxv31s9/domains/s2member.net/html"
SITE_CGIROOT
"/home/qsb5unxv31s9/domains/s2member.net/html/cgi-bin"
SITE_HTMLROOT
"/home/qsb5unxv31s9/domains/s2member.net/html"
0. Whoops\Handler\PrettyPageHandler