WPINC_general template.php Notes - WordPress-Thinstall/wordpress-develop GitHub Wiki

interface GeneralTemplateInterface {
    function get_header( $name = null );
    function get_footer( $name = null );
    function get_sidebar( $name = null );
    function get_template_part( $slug, $name = null );
    function get_search_form( $echo = true );
    function wp_loginout($redirect = '', $echo = true);
    function wp_logout_url($redirect = '');
    function wp_login_url($redirect = '', $force_reauth = false);
    function wp_registration_url();
    function wp_login_form( $args = array() );
    function wp_lostpassword_url( $redirect = '' );
    function wp_register( $before = '<li>', $after = '</li>', $echo = true );
    function wp_meta();
    function bloginfo( $show = '' );
    function get_bloginfo( $show = '', $filter = 'raw' );
    function get_site_icon_url( $size = 512, $url = '', $blog_id = 0 );
    function site_icon_url( $size = 512, $url = '', $blog_id = 0 );
    function has_site_icon( $blog_id = 0 );
    function has_custom_logo( $blog_id = 0 );
    function get_custom_logo( $blog_id = 0 );
    function the_custom_logo( $blog_id = 0 );
    function wp_get_document_title();
    function _wp_render_title_tag();
    function wp_title( $sep = '&raquo;', $display = true, $seplocation = '' );
    function single_post_title( $prefix = '', $display = true );
    function post_type_archive_title( $prefix = '', $display = true );
    function single_cat_title( $prefix = '', $display = true );
    function single_tag_title( $prefix = '', $display = true );
    function single_term_title( $prefix = '', $display = true );
    function single_month_title($prefix = '', $display = true );
    function the_archive_title( $before = '', $after = '' );
    function get_the_archive_title();
    function the_archive_description( $before = '', $after = '' );
    function get_the_archive_description();
    function get_archives_link($url, $text, $format = 'html', $before = '', $after = '');
    function wp_get_archives( $args = '' );
    function calendar_week_mod($num);
    function get_calendar( $initial = true, $echo = true );
    function delete_get_calendar_cache();
    function allowed_tags();
    
    // DateTime Functions
    function the_date_xml();
    function the_date( $d = '', $before = '', $after = '', $echo = true );
    function get_the_date( $d = '', $post = null );
    function the_modified_date( $d = '', $before = '', $after = '', $echo = true );
    function get_the_modified_date( $d = '', $post = null );
    function the_time( $d = '' );
    function get_the_time( $d = '', $post = null );
    function get_post_time( $d = 'U', $gmt = false, $post = null, $translate = false );
    function the_modified_time($d = '');
    function get_the_modified_time( $d = '', $post = null );
    function get_post_modified_time( $d = 'U', $gmt = false, $post = null, $translate = false );
    function the_weekday();
    function the_weekday_date($before='',$after='');
    function wp_head();
    function wp_footer();
    function feed_links( $args = array() );
    function feed_links_extra( $args = array() );
    function rsd_link();
    function wlwmanifest_link();
    function noindex();
    function wp_no_robots();
    function wp_site_icon();
    function wp_resource_hints();
    function wp_dependencies_unique_hosts();
    function user_can_richedit();
    function wp_default_editor();
    function wp_editor( $content, $editor_id, $settings = array() );
    function get_search_query( $escaped = true );
    function the_search_query();
    function get_language_attributes( $doctype = 'html' );
    function language_attributes( $doctype = 'html' );
    function paginate_links( $args = '' );
    function wp_admin_css_color( $key, $name, $url, $colors = array(), $icons = array() );
    function register_admin_color_schemes();
    function wp_admin_css_uri( $file = 'wp-admin' );
    function wp_admin_css( $file = 'wp-admin', $force_echo = false );
    function add_thickbox();
    function wp_generator();
    function the_generator( $type );
    function get_the_generator( $type = '' );
    function checked( $checked, $current = true, $echo = true );
    function selected( $selected, $current = true, $echo = true );
    function disabled( $disabled, $current = true, $echo = true );
    function __checked_selected_helper( $helper, $current, $echo, $type );
    function wp_heartbeat_settings( $settings );
}
⚠️ **GitHub.com Fallback** ⚠️