WP_MEMORY_LIMIT=>memory_limit=>32M
ABSPATH=>Root Path=>root/wp-load.php
WPINC =>/wp-includes=>root/wp-admin/gears-manifest.php
FUNCTION
is_home()=>root/wp-includes/query.php
post_class()=>root/wp-includes/post-template.php=>Set the class of the post title.
have_posts()=>root/wp-includes/query.php
the_post()=>root/wp-includes/query.php=>For the post FUnction
setup_postdata($post)=>root/wp-includes/query.php=>Just Fecth the content and set no of pages.
process_posts()=>root/wp-admin/import/mt.php
the_title()=>root/wp-includes/post-template.php=>Just echo the title
get_the_content()=>root/wp-includes/post-template.php=>Fetch The Content
the_content()=>root/wp-includes/post-template.php=>Just echo the COntent
get_the_title()=>root/wp-includes/post-template.php=>Fetch The title
the_category()=>root/wp-includes/category-template.php=>Just echo the COntent
get_the_title()=>root/wp-includes/post-template.php=>Fetch The title
get_template_directory_uri()=>root/wp-content/themes/default/
dynamic_sidebar()=>root/wp-includes/widgets.php=>True/False
ajax_calendar()=>root/wp-content/plugins/ajax-calendar2/models/calender.php
wp_widget_calendar()=>root/wp-includes/widgets.php=>For Fetching Calender
get_calendar()=>root/wp-includes/general-template.php=>For Fetching Record With Calender
get_calendar()=>root/wp-includes/general-template.php=>For Setting css to the date for a post.
wp_widget_pages()=>root/wp-includes/widgets.php=>For Fetching Pages
wp_widget_links()=>root/wp-includes/widgets.php=>For Fetching Links
wp_widget_meta()=>root/wp-includes/widgets.php=>For Fetching Meta Tags
wp_widget_search()=>root/wp-includes/widgets.php=>For Fetching Search Function
get_search_form()=>root/wp-includes/general-template.php=>For Fetching Search Form
wp_widget_recent_entries()=>root/wp-includes/widgets.php=>For Get Widget Recent Entries
wp_widget_tag_cloud()=>root/wp-includes/widgets.php=>For Get Tag Function
wp_widget_archives()=>root/wp-includes/widgets.php=>For Get Archive information
Customize Calender
ec3_get_calendar()=>root/wp-content/plugins/event-calendar/template-functions.php
ec3_get_calendar_nav()=>root/wp-content/plugins/event-calendar/template-functions.php
wp_widget_categories()=>root/wp-includes/widgets.php=>For Get Categories
wp_list_categories()=>root/wp-includes/category-template.php=>For Fetching all categories Categories
get_category_link()=>
walk_category_tree()=>root/wp-includes/category-template.php=>Just calling the function to go through the category.
walk()=>root/wp-includes/classes.php=>=>Go through the category
display_element=>root/wp-includes/classes.php=>Display the category element.
Customize Function
wp_list_customized_categories()=>root/wp-includes/category-template.php=>customized categories Categories
walk_customized_category_tree()=>root/wp-includes/category-template.php=>Just calling the function to go through the
walk_customize()=>root/wp-includes/classes.php=>Go through the category.
start_customized_el()=>root/wp-includes/classes.php=>Fetch element to display category.
For Calender
go_next()=>root/wp-content/plugins/event-calendar/ec3.js=>For ajax javascript function.
loadDates()=>root/wp-content/plugins/event-calendar/ec3.js=>For ajax javascript function.
process_xml()=>root/wp-content/plugins/event-calendar/ec3.js=>Ready state function is call.
ec3_Popup.add_tbody()=>root/wp-content/plugins/event-calendar/popup.js=>79 line.
ec3_filter_query_vars()=>root/wp-content/plugins/event-calendar/eventcalendar3.php=>For ajax process page.
ec3_filter_query_vars_xml=>root/wp-content/plugins/event-calendar/eventcalendar3.php=>For ajax process page.
wp_widget_text()=>root/wp-includes/widgets.php=>For Get widget Text
wp_widget_rss()=>root/wp-includes/widgets.php=>For Get widget RSS
wp_widget_recent_comments()=>root/wp-includes/widgets.php=>For Get Comment
M:\wp-content\themes\default\archive.php =>For displaying article from archive.
M:\wp-content\themes\default\archive.php =>For displaying article from Category.
M:\wp-content\themes\default\archive.php =>For displaying article from Calender.
For Customize Calender Template
To Change Calnder year month display=>Go to ec3.js Line Number 121.
Recent Post =>single.php
Blog Archive=>archive.php
Calender Archive=>archive.php
Category Archive=>archive.php
have_posts()=>The have_posts function checks to see if the current post number is less than the number of posts you choose to display in the Admin panel. The loop will then continue until the current post number reachers the maximum number of posts you have decided to show.
the_author()=>Retrieves the author’s name.
the_title()=> Displays the title of the current post.
the_content()=> Displays the contents of the post.
the_permalink()=> Displays the URL for the post in the form of a permalink.
the_ID()=>Displays the post ID.
Global variable authordata can be used in a function using this code:
global $authordata;
echo $authordata->display_name;
The authordata global can also access: nickname, last_name, first_name, ID, user_email, user_url, user_login, description, and several others.
Global variable post can be used in a function using this code:
global $post;
echo $post->post_title;
The post global can also access: ID, post_author, post_date, post_excerpt, comment_count, and several others.