Notes ACCESS 2022 | Browsers | Css | Htacess | Html | Html5 | Javascript | Microsoft Excel | Mysql | Mysql Dumps | Php | Vb.net | VBscript | Windows <=8 | Windows >=10 | WP | WP Plugin | WP Themes | _Misc Software | ABCDEFGHIJKLMNOPQRSTUVWXYZONPRTOFF codeid operationid title keywords application code languageid show_html show_iframe make_public viewed viewed_date language operation <- Look Inside DataConditions:Order: 1|2|3|4|5|6|7|8|50 Language Operation Title Keywords Application Code Languageid Show Html Show Iframe Make Public Viewed Viewed Date WP Files Show Current Page mysql setting current page mysql settings- root folder wp-config.php [current page] $temp = get_page_template(); $path = pathinfo($temp); $temp = $path['filename'] . "." . $path['extension']; echo $temp; WP 1995 09/09/2023 WP Files Folder Shortcut Functions home theme plugin site url folder Available Functions WordPress includes many other functions for determining paths and URLs to files or directories within plugins, themes, and WordPress itself. See the individual Codex pages for each function for complete information on their use. ABSPATH - from wpconfig.php Plugins plugins_url() plugin_dir_url() plugin_dir_path() plugin_basename() Themes get_template_directory_uri() get_stylesheet_uri() get_theme_root_uri() get_theme_root() get_theme_roots() Site Home home_url() WordPress admin_url() site_url() content_url() includes_url() wp_upload_dir() Multisite get_admin_url() get_home_url() get_site_url() network_admin_url() network_site_url() network_home_url() Constants WordPress makes use of the following constants when determining the path to the content and plugin directories. These should not be used directly by plugins or themes, but are listed here for completeness. WP_CONTENT_DIR // no trailing slash, full paths only WP_CONTENT_URL // full url WP_PLUGIN_DIR // full path, no trailing slash WP_PLUGIN_URL // full url, no trailing slash // Available per default in MS, not set in single site install // Can be used in single site installs (as usual: at your own risk) UPLOADS // uploads folder, relative to ABSPATH (for e.g.: /wp-content/uploads) WP 1563 09/09/2023 WP Files WPfunctions.php function mysql plugin quickarray=$value;return true; } function tableOption($query){ global $connection; $q = mysqli_query($connection,$query); //mysql_query($query); $num_fields = mysqli_num_fields($q); for($ii = 0; $ii < $num_fields; $ii++) { //$result.= mysql_field_name($query,$ii)."-".mysql_field_type($query,$ii)."(".mysql_field_len($query,$ii).")".mysql_field_flags($query,$ii)."n"; $fieldinfo=mysqli_field_flags($q,$ii); if(strpos($fieldinfo,"rimary_key")>0){ $this->fieldname=mysql_field_name($q,$ii);break; } } } function dbRow($result){ return mysqli_fetch_array($result,MYSQLI_BOTH); //,MYSQLI_BOTH } function dbTable($result,$k){ $table_info = mysqli_fetch_field_direct($result, $k); //print_r($table_info);echo""; $this->fieldlength = $table_info->max_length; $this->fieldname = $table_info->name; $this->fieldtable = $table_info->table; $this->fieldtype = $table_info->type; $this->fieldflag = $table_info->flags; } function dbsql2($query){ $this->insertoption=$query; } function dbsql($query){ global $db; global $dc;global $debug; global $appid; global $connection; global $wpdb; // $result=mysqli_query($connection,$query); // or die(mysqli_error().' from '.$query); //;mysql_query($query) $result=mysqli_query($wpdb->dbh,$query); if(!$result){ if($debug==true){ echo "Error:".$query;exit; }else{ echo "Error:".substr($query,0,1000);exit;} } $sql= strtolower($query); if(strpos($sql,"nsert into")==1)$AC=1; if(strpos($sql,"elect")==1){ $AC=2;$this->num=mysqli_num_rows($result); } if(strpos($sql,"pdate")==1 || strpos($sql,"elete")==1)$AC=3; switch($AC){ case 1: $this->id=mysqli_insert_id($connection); break; case 2: if($this->num==0 && $this->insertoption!=""){ $this->dbq($this->insertoption); return false; } if($this->num==0) return false; if($appid!=""){ $this->data1=mysqli_fetch_array($result,MYSQLI_BOTH);mysqli_data_seek($result,0); //mysql_data_seek($result,0); $this->data=$result; }else{ if($this->num==1 && $this->quickarray==true)$this->data=mysqli_fetch_array($result,MYSQLI_BOTH); //mysql_fetch_array($result); else $this->data=$result; } $this->fields = mysqli_num_fields($result); return true; break; case 3: return true; break; } // end switch } } // end class function sizepicture($picture,$maxwidth,$maxheight){ list($width, $height, $type, $attr) = getimagesize($picture); if($width==0)$width=1;if($height==0)$height=1; $size[2]=$width;$size[3]=$height; $hratio=$height/$maxheight; $wratio=$width/$maxwidth; if ($wratio>$hratio){ $ratio=$width/$height; if($width>$maxwidth){ $height=(int)($maxwidth/$ratio);$width=$maxwidth; } }else{ $ratio=$height/$width; if($height>$maxheight){ $width=(int)($maxheight/$ratio);$height=$maxheight; } } $size[0]=$width;$size[1]=$height; return $size; } function replaceForm($longadd){ $longadd=stripslashes($longadd); $longadd=str_replace(chr(160),chr(32),$longadd); $longadd=str_replace("'","'",$longadd); $longadd=str_replace(chr(34),""",$longadd); return $longadd; } function replacePunctuation($longadd){ $longadd=stripslashes($longadd); $longadd=str_replace(chr(160),chr(32),$longadd); return $longadd; } function radiochecked($var,$item){ if($var==$item) return "checked"; else return ""; } function checkboxchecked($value){ if($value==1) return "checked"; else return ""; } function checkhtml($var){ $var2=strip_tags($var); if($var2!=$var){ echo "Mail Server Crashed";exit; } if(strpos("|".$var,"http:")>0){ echo "Mail Server Crashed";exit; } $var=addslashes($var); return $var; } function stripDESC($var1){ $m=strpos($var1,'DESC'); if($m>0)$var1=substr($var1,0,$m-1); return $var1; } function ShortenString($var1){ global $prn; $var1=stripslashes($var1); $var1=str_replace(chr(160),chr(32),$var1); $var1=str_replace(chr(13),'',$var1); if(strlen($var1)>100 && $prn==''){ // $var1=substr($var1,0,40).'....'; //$var1="".$var1.""; } //if($var1=='')$var1='? '; if(strpos($var1,'.location')>0 || strpos($var1,'.href')>0)$var1='spam'; return $var1; } function checkBlanks($value){ if($value!="")return "".$value; else return ""; } function convertmdy($date1){ if($date1==""||$date1=="0000-00-00"){ $date1="";return date("m/d/y"); } $new=strtotime($date1); $date1= date('m/d/Y',$new); return $date1; } function convertmdytime($date1){ if($date1==""||$date1=="0000-00-00"){ $date1="";return $date1; } $time=strtotime($date1); $date1= date('m/d/Y H:i:s',$time); return $date1; } function convertdate($date1){ if($date1=="") return date('Y-m-d'); $date1=str_replace("/","|",$date1); $date1=str_replace("-","|",$date1); $time=explode("|",$date1); if(strlen($time[0])==1) $time[0]="0".$time[0]; if(strlen($time[1])==1) $time[1]="0".$time[1]; $new=trim($time[2])."-".$time[0]."-".$time[1]; $date1= date('Y-m-d',strtotime($new)); return $date1; } function convertdatetime($date1){ if($date1=="") return date("Y-m-d H:i:s"); $date1=str_replace("/","|",$date1);$date1=str_replace(" ","|",$date1);$date1=str_replace(":","|",$date1); $date1=str_replace("-","|",$date1); $time=explode("|",$date1); if(strlen($time[0])==1) $time[0]="0".$time[0]; if(strlen($time[1])==1) $time[1]="0".$time[1]; $date1=trim($time[2])."-".$time[0]."-".$time[1]." ".$time[3].":".$time[4].":".$time[5]; $date1= date('Y-m-d H:i:s',strtotime($date1)); return $date1; } ?> WP 0 07/29/2022 WP Formatting Make The Top Menu Clickable Only click-able click-able container menus link submenu sub menu I create a top menu page for linking pages to a parent page but it causes problems when you want people to click on the sub menus only. WordPress 3.6 changed the appearance of this. Appearance > Menus > Edit Menus You’ll have to create a new menu item in the “Links” box. There should be a URL box and a Link Text box. What you’re wanting to do is just make the menu item a container only. If you want a Navigation Menu Button to be just a container that does nothing except provide a container for a drop-down of other sub menu buttons just place the following in the URL section of the button/menu. javascript: void(0); or: # Add to menu http://cyberchimps.com/guide/how-to-use-the-menu-system/ http://cyberchimps.com/forum-topic/make-menu-items-inactive-but-clickable-for-the-drop-down-sub-menu/ WP 1067 09/09/2023 WP Formatting Register Widget Areas In Your Admin Cpanel widget area register_sidebar functions.php admin How to add widget area Author: Chris Diaz Posted on: April 7, 2011 Relation: Layout Complexity: Advanced Tags: widget, WordPress Rating: 3.3/5 (2 votes cast) How to add widget area in WordPress This tutorial will show you how to create new widget area in WordPress. Any widget in WordPress template could be displayed in any place on the page. This could be done using WordPress widget areas. To add widget area access to your WordPress installation folder. 1. Open ‘wp-content/themes/theme###’ folder. 2. View the functions.php file 3. Use search tool (CTRL+F) and search for ‘widget’. You can fund the following lines: Here you can see that widgets are defined in the sidebar-init.php file ? 1 2 //Widget and Sidebar require_once $includes_path . 'sidebar-init.php'; This line defines the $includes_path variable value. ? 1 $includes_path = TEMPLATEPATH . '/includes/'; These lines shows you that the widgets are defined in the wp-content/themes/theme###/includes/sidebar-init.php file 4. Open sidebar-init.php file. All widget areas are defined here. The following code is used to define wach area: ? 1 2 3 4 5 6 7 8 9 register_sidebar(array( 'name' => 'Sidebar 2', 'id' => 'sidebar-2', 'description' => __( 'Located at the right side of pages.'), 'before_widget' => '', 'after_widget' => '', 'before_title' => '', 'after_title' => '', )); To register new widget area copy the code above and paste it before the closing ‘}’ bracket Change the ‘name’, ‘id’ and ‘description’ values. 5. Now you can insert the widget area to any part of the template. Go back to the ‘wp-content/themes/theme###‘ folder. You can insert the area to any layout file: header.php footer.php single.php category.php index.php sidebar.php etc 6. Paste the following code to the required place to insert the widget area. ? 1 Replace ‘New Widget Area’ with your widget area name. 7. If everything has been done correctly the new widget area would be available from the WordPress admin panel Appearance>Widgets (right column) . WP 1238 09/09/2023 WP Formatting Using External Php Pages external pages get header get footer get sidebar get_header() get_footer() get_sidebar() I like to use my stuff with the WordPress capabilities. I can also put my stuff in a separate directory making it easier to debug files. The newest version of WP merged the old WordPress Multi-User (WPMU) and the standalone version of WordPress. Since this merger, the new way to include WP in external pages is to change the require() statement to pull in wp-load.php (instead of wp-blog-header.php) like this: < ?php require('./wp-load.php'); get_header(); ?> This is the external content. < ?php get_sidebar(); get_footer(); ?> WP 757 09/09/2023 WP Formatting Embed Wordpress Page Into An External Php Page embed wordpress page apply_filters get_pages functions Create a category PageInserts and group your insert pages under this category. the 62 is my page 62 post_content); echo $content; //end load my wordpress page // start my custom code ?> WP 759 09/09/2023 WP Formatting Hide A Widget Area Without Removing It hide widget area class id Wordpress themes usually have a div tag surrounding the widget area. Using something like Firebug in Firefox will show the div tag id names and classes. Using the header widget area in the themes css file: #header .widget-area { float: right; padding: 35px 0 0; width: 550px; } add "display:none;" after "width:550px;" and it will disappear. external pages can have javascript at the end of the document can have: if it is a class. if it is an id. WP 670 09/09/2023 WP Function Code That Displays Errors error Error Traping ini_set('display_errors','Off'); ini_set('error_reporting', E_ALL & ~E_WARNING & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT); define('WP_DEBUG', false); define('WP_DEBUG_DISPLAY', false); define('WP_DEBUG_LOG', true); // Still logs critical errors to debug.log function wp_debug_mode() { /** * Filters whether to allow the debug mode check to occur. * * This filter runs before it can be used by plugins. It is designed for * non-web runtimes. Returning false causes the `WP_DEBUG` and related * constants to not be checked and the default PHP values for errors * will be used unless you take care to update them yourself. * * To use this filter you must define a `$wp_filter` global before * WordPress loads, usually in `wp-config.php`. * * Example: * * $GLOBALS['wp_filter'] = array( * 'enable_wp_debug_mode_checks' => array( * 10 => array( * array( * 'accepted_args' => 0, * 'function' => function() { * return false; * }, * ), * ), * ), * ); * * @since 4.6.0 * * @param bool $enable_debug_mode Whether to enable debug mode checks to occur. Default true. */ if ( ! apply_filters( 'enable_wp_debug_mode_checks', true ) ) { return; } if ( WP_DEBUG ) { error_reporting( E_ALL ); if ( WP_DEBUG_DISPLAY ) { ini_set( 'display_errors', 1 ); } elseif ( null !== WP_DEBUG_DISPLAY ) { ini_set( 'display_errors', 0 ); } if ( in_array( strtolower( (string) WP_DEBUG_LOG ), array( 'true', '1' ), true ) ) { $log_path = WP_CONTENT_DIR . '/debug.log'; } elseif ( is_string( WP_DEBUG_LOG ) ) { $log_path = WP_DEBUG_LOG; } else { $log_path = false; } if ( $log_path ) { ini_set( 'log_errors', 1 ); ini_set( 'error_log', $log_path ); } } else { error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR ); } /* * The 'REST_REQUEST' check here is optimistic as the constant is most * likely not set at this point even if it is in fact a REST request. */ if ( defined( 'XMLRPC_REQUEST' ) || defined( 'REST_REQUEST' ) || defined( 'MS_FILES_REQUEST' ) || ( defined( 'WP_INSTALLING' ) && WP_INSTALLING ) || wp_doing_ajax() || wp_is_json_request() ) { ini_set( 'display_errors', 0 ); } } WP 1 01/08/2026 WP Function Start Plugin plugin wpdb Plugin $appid="777";if(!defined('SWD_PATH')){define( 'SWD_PATH', plugin_dir_path( __FILE__ ));} require_once( SWD_PATH."SWD/WPfunctions.php");$connection=$wpdb->dbh; WP 3 09/09/2023 WP Function Directories directory function Available Functions WordPress includes many other functions for determining paths and URLs to files or directories within plugins, themes, and WordPress itself. See the individual Codex pages for each function for complete information on their use. ABSPATH - from wpconfig.php Plugins plugins_url() plugin_dir_url() plugin_dir_path() plugin_basename() Themes get_template_directory_uri() get_stylesheet_uri() get_theme_root_uri() get_theme_root() get_theme_roots() Site Home home_url() WordPress admin_url() site_url() content_url() includes_url() wp_upload_dir() Multisite get_admin_url() get_home_url() get_site_url() network_admin_url() network_site_url() network_home_url() Constants WordPress makes use of the following constants when determining the path to the content and plugin directories. These should not be used directly by plugins or themes, but are listed here for completeness. WP_CONTENT_DIR // no trailing slash, full paths only WP_CONTENT_URL // full url WP_PLUGIN_DIR // full path, no trailing slash WP_PLUGIN_URL // full url, no trailing slash // Available per default in MS, not set in single site install // Can be used in single site installs (as usual: at your own risk) UPLOADS // uploads folder, relative to ABSPATH (for e.g.: /wp-content/uploads) WP 2 09/09/2023 WP Function Hooks hook embed http://adambrown.info/p/wp_hooks/version/3.9 // Remove old copyright text add_action( 'init' , 'mh_remove' , 15 ); function mh_remove() { remove_action('wp_footer','footer-2',30); } Parameters $tag (string) (required) The action hook to which the function to be removed is hooked. Default: None $function_to_remove (string) (required) The name of the function which should be removed. Default: None $priority (int) (optional) The priority of the function (as defined when the function was originally hooked). Default: 10 Return add_action( 'widgets_init', 'my_widget' ); All plugin hooks in WordPress 3.9 Important! Some WordPress hooks get applied in multiple PHP files. If you are trying to figure out what a specific WordPress hook does, sort the table by "hook" and make sure you are looking in all the files where it occurs. To sort the table, click on a column title. Click a hook name to see details about the hook. Click a file name to see only hooks used in that file. Hook Type New? Instances 1 activated_plugin action no 1 2 activate_blog action no 1 3 activate_header action no 1 4 activate_plugin action no 1 5 activate_wp_head action no 1 6 activate_{$plugin} note action no 2 7 activity_box_end action no 1 8 added_existing_user action no 1 9 added_option action no 1 10 added_term_relationship action no 1 11 added_usermeta action no 1 12 added_{$meta_type}_meta note action no 1 13 additional_capabilities_display filter no 1 14 add_admin_bar_menus action no 1 15 add_attachment action no 1 16 add_category_form_pre action no 1 17 add_link action no 1 18 add_link_category_form_pre action no 1 19 add_menu_classes filter no 1 20 add_meta_boxes action no 3 21 add_meta_boxes_comment action no 1 22 add_meta_boxes_link action no 1 23 add_meta_boxes_{$post_type} note action no 1 24 add_option action no 1 25 add_option_{$option} note action no 1 26 add_ping filter no 1 27 add_signup_meta filter no 3 28 add_site_option action no 1 29 add_site_option_{$option} note action no 1 30 add_tag_form action no 1 31 add_tag_form_fields action no 1 32 add_tag_form_pre action no 1 33 add_term_relationship action no 1 34 add_user_to_blog action no 1 35 add_{$meta_type}_meta note action no 1 36 add_{$meta_type}_metadata note filter no 1 37 adminmenu action no 1 38 admin_action_{$action} note action no 1 39 admin_bar_init action no 1 40 admin_bar_menu action no 1 41 admin_body_class filter no 2 42 admin_color_scheme_picker action no 1 43 admin_comment_types_dropdown filter no 1 44 admin_enqueue_scripts action no 5 45 admin_footer action no 3 46 admin_footer-widgets-php action YES 1 47 admin_footer-{$hook_suffix} note action no 1 48 admin_footer_text filter no 1 49 admin_head action no 4 50 admin_head-media-upload-popup action no 1 51 admin_head-press-this-php action no 1 52 admin_head-{$hook_suffix} note action no 2 53 admin_head_{$content_func} note action no 1 54 admin_init action no 3 55 admin_memory_limit filter no 3 56 admin_menu action no 1 57 admin_notices action no 1 58 admin_page_access_denied action no 1 59 admin_post_thumbnail_html filter no 1 60 admin_print_footer_scripts action no 5 61 admin_print_scripts action no 5 62 admin_print_scripts-media-upload-popup action no 1 63 admin_print_scripts-press-this-php action no 1 64 admin_print_scripts-widgets-php action YES 1 65 admin_print_scripts-{$hook_suffix} note action no 2 66 admin_print_styles action no 5 67 admin_print_styles-media-upload-popup action no 1 68 admin_print_styles-press-this-php action no 1 69 admin_print_styles-widgets-php action YES 1 70 admin_print_styles-{$hook_suffix} note action no 2 71 admin_title filter no 1 72 admin_url filter no 1 73 admin_xml_ns action no 2 74 after-{$taxonomy}-table note action no 1 75 after_db_upgrade action no 1 76 after_delete_post action no 1 77 after_menu_locations_table action no 1 78 after_mu_upgrade action no 2 79 after_plugin_row action no 1 80 after_plugin_row_{$plugin_file} note action no 1 81 after_setup_theme action no 1 82 after_signup_form action no 1 83 after_switch_theme action no 2 84 after_theme_row action no 1 85 after_theme_row_{$stylesheet} note action no 1 86 after_wp_tiny_mce action no 1 87 ajax_query_attachments_args filter no 1 88 akismet_comment_check_response action no 1 89 akismet_comment_nonce filter no 2 90 akismet_delete_commentmeta_interval filter no 1 91 akismet_optimize_table filter no 2 92 akismet_show_user_comments_approved filter no 1 93 akismet_spam_caught action no 1 94 akismet_spam_count_incr filter no 2 95 akismet_submit_nonspam_comment action no 1 96 akismet_submit_spam_comment action no 1 97 akismet_ua filter no 1 98 akismet_view_arguments filter YES 1 99 allowed_http_origin filter no 1 100 allowed_http_origins filter no 1 101 allowed_redirect_hosts filter no 1 102 allowed_themes filter no 1 103 allow_dev_auto_core_updates filter no 1 104 allow_major_auto_core_updates filter no 1 105 allow_minor_auto_core_updates filter no 1 106 allow_password_reset filter no 1 107 allow_subdirectory_install filter no 1 108 all_admin_notices action no 1 109 all_plugins filter no 1 110 all_themes filter no 1 111 archive_blog action no 2 112 async_upload_{$type} note filter no 1 113 atom_author action no 1 114 atom_comments_ns action no 1 115 atom_enclosure filter no 1 116 atom_entry action no 1 117 atom_head action no 1 118 atom_ns action no 2 119 attachment_fields_to_edit filter no 2 120 attachment_fields_to_save filter no 3 121 attachment_icon filter no 1 122 attachment_innerHTML filter no 1 123 attachment_link filter no 1 124 attachment_max_dims filter no 1 125 attachment_submitbox_misc_actions action no 1 126 attachment_thumbnail_args filter YES 1 127 attribute_escape filter no 1 128 audio_submitbox_misc_sections filter no 1 129 authenticate filter no 1 130 author_email filter no 1 131 author_feed_link filter no 1 132 author_link filter no 1 133 author_rewrite_rules filter no 1 134 auth_cookie filter no 1 135 auth_cookie_bad_hash action no 1 136 auth_cookie_bad_username action no 1 137 auth_cookie_expiration filter no 2 138 auth_cookie_expired action no 1 139 auth_cookie_malformed action no 1 140 auth_cookie_valid action no 1 141 auth_post_meta_{$meta_key} note filter no 1 142 auth_redirect action no 1 143 auth_redirect_scheme filter no 1 144 autocomplete_users_for_site_admins filter no 2 145 automatic_updater_disabled filter no 1 146 automatic_updates_complete action no 1 147 automatic_updates_debug_email filter no 1 148 automatic_updates_is_vcs_checkout filter no 1 149 automatic_updates_send_debug_email filter no 1 150 auto_core_update_email filter no 1 151 auto_core_update_send_email filter no 1 152 auto_update_{$type} note filter no 1 153 avatar_defaults filter no 1 154 before_delete_post action no 1 155 before_signup_form action no 1 156 before_wp_tiny_mce action no 1 157 begin_fetch_post_thumbnail_html action no 1 158 block_local_requests filter no 1 159 bloginfo filter no 1 160 bloginfo_rss filter no 1 161 bloginfo_url filter no 1 162 blog_details filter no 1 163 blog_option_{$option} note filter no 1 164 blog_privacy_selector action no 1 165 blog_redirect_404 filter no 1 166 body_class filter no 1 167 browse-happy-notice filter no 1 168 bulk_actions-{$this->screen->id} note filter no 1 169 bulk_edit_custom_box action no 1 170 bulk_post_updated_messages filter no 1 171 cancel_comment_reply_link filter no 1 172 can_edit_network filter no 1 173 category_description filter no 1 174 category_feed_link filter no 1 175 category_link filter no 1 176 check_admin_referer action no 1 177 check_ajax_referer action no 1 178 check_comment_flood action no 1 179 check_is_user_spammed filter no 1 180 check_password filter no 2 181 check_passwords action no 1 182 clean_attachment_cache action no 1 183 clean_object_term_cache action no 1 184 clean_page_cache action no 1 185 clean_post_cache action no 1 186 clean_term_cache action no 1 187 clean_url filter no 1 188 clear_auth_cookie action no 1 189 close_comments_for_post_types filter no 2 190 commentrss2_item action no 1 191 commentsrss2_head action no 1 192 comments_array filter no 1 193 comments_atom_head action no 1 194 comments_clauses filter no 1 195 comments_link_feed filter no 1 196 comments_number filter no 1 197 comments_open filter no 1 198 comments_per_page filter no 2 199 comments_popup_link_attributes filter no 1 200 comments_rewrite_rules filter no 1 201 comments_template filter no 1 202 comment_add_author_url action no 1 203 comment_atom_entry action no 1 204 comment_author filter no 1 205 comment_author_rss filter no 1 206 comment_class filter no 1 207 comment_closed action no 1 208 comment_cookie_lifetime filter no 1 209 comment_duplicate_trigger action no 1 210 comment_edit_pre filter no 2 211 comment_edit_redirect filter no 1 212 comment_email filter no 1 213 comment_excerpt filter no 1 214 comment_feed_groupby filter no 2 215 comment_feed_join filter no 2 216 comment_feed_limits filter no 2 217 comment_feed_orderby filter no 2 218 comment_feed_where filter no 2 219 comment_flood_filter filter no 1 220 comment_flood_trigger action no 1 221 comment_form action no 3 222 comment_form_after action no 1 223 comment_form_after_fields action no 1 224 comment_form_before action no 1 225 comment_form_before_fields action no 1 226 comment_form_comments_closed action no 1 227 comment_form_defaults filter no 1 228 comment_form_default_fields filter no 1 229 comment_form_field_comment filter no 1 230 comment_form_field_{$name} note filter no 1 231 comment_form_logged_in filter no 1 232 comment_form_logged_in_after action no 1 233 comment_form_must_log_in_after action no 1 234 comment_form_top action no 1 235 comment_id_fields filter no 1 236 comment_id_not_found action no 1 237 comment_link filter no 1 238 comment_loop_start action no 1 239 comment_max_links_url filter no 1 240 comment_moderation_headers filter no 1 241 comment_moderation_recipients filter no 1 242 comment_moderation_subject filter no 1 243 comment_moderation_text filter no 1 244 comment_notification_headers filter no 1 245 comment_notification_notify_author filter no 1 246 comment_notification_recipients filter no 1 247 comment_notification_subject filter no 1 248 comment_notification_text filter no 1 249 comment_on_draft action no 1 250 comment_on_password_protected action no 1 251 comment_on_trash action no 1 252 comment_post action no 1 253 comment_post_redirect filter no 1 254 comment_remove_author_url action no 1 255 comment_reply_link filter no 1 256 comment_row_actions filter no 2 257 comment_save_pre filter no 1 258 comment_status_links filter no 1 259 comment_text filter no 2 260 comment_text_rss filter no 1 261 comment_url filter no 1 262 comment_{$new_status}_{$comment->comment_type} note action no 1 263 comment_{$old_status}_to_{$new_status} note action no 1 264 content_url filter no 1 265 contextual_help filter no 1 266 contextual_help_list filter no 1 267 core_upgrade_preamble action no 1 268 core_version_check_locale filter no 1 269 created_term action no 1 270 created_{$taxonomy} note action no 1 271 create_term action no 1 272 create_{$taxonomy} note action no 1 273 cron_request filter no 1 274 cron_schedules filter no 1 275 current_screen action no 1 276 current_theme_supports-{$feature} note filter no 1 277 customizer_widgets_section_args filter YES 1 278 customize_allowed_urls filter no 1 279 customize_controls_enqueue_scripts action no 1 280 customize_controls_init action no 1 281 customize_controls_print_footer_scripts action no 1 282 customize_controls_print_scripts action no 1 283 customize_controls_print_styles action no 1 284 customize_preview_init action no 1 285 customize_preview_{$this->id} note action no 1 286 customize_register action no 1 287 customize_render_control action no 1 288 customize_render_control_{$this->id} note action no 1 289 customize_render_section action no 1 290 customize_render_section_{$this->id} note action no 1 291 customize_sanitize_js_{$this->id} note filter no 1 292 customize_sanitize_{$this->id} note filter no 1 293 customize_save action no 1 294 customize_save_after action no 1 295 customize_save_{$this->id_data[base]} note action no 1 296 customize_update_{$this->type} note action no 1 297 customize_value_{$this->id_data[base]} note filter no 1 298 custom_header_options action no 1 299 custom_menu_order filter no 1 300 dashboard_glance_items filter no 1 301 dashboard_primary_feed filter no 1 302 dashboard_primary_link filter no 1 303 dashboard_primary_title filter no 1 304 dashboard_secondary_feed filter no 1 305 dashboard_secondary_link filter no 1 306 dashboard_secondary_title filter no 1 307 date_formats filter no 1 308 date_i18n filter no 1 309 date_query_valid_columns filter no 1 310 date_rewrite_rules filter no 1 311 day_link filter no 1 312 dbdelta_create_queries filter no 1 313 dbdelta_insert_queries filter no 1 314 dbdelta_queries filter no 1 315 dbx_post_advanced action no 1 316 dbx_post_sidebar action no 1 317 deactivated_plugin action no 1 318 deactivate_blog action no 1 319 deactivate_plugin action no 1 320 deactivate_{$plugin} note action no 1 321 default_avatar_select filter no 1 322 default_content filter no 1 323 default_contextual_help filter no 1 324 default_excerpt filter no 1 325 default_feed filter no 1 326 default_hidden_meta_boxes filter no 1 327 default_option_{$option} note filter no 3 328 default_site_option_{$option} note filter no 3 329 default_title filter no 1 330 deleted_comment action no 1 331 deleted_link action no 1 332 deleted_option action no 1 333 deleted_post action no 2 334 deleted_postmeta action no 1 335 deleted_site_transient action no 1 336 deleted_term_relationships action no 1 337 deleted_term_taxonomy action no 1 338 deleted_transient action no 1 339 deleted_user action no 2 340 deleted_usermeta action no 1 341 deleted_{$meta_type}meta note action no 1 342 deleted_{$meta_type}_meta note action no 2 343 delete_attachment action no 1 344 delete_blog action no 1 345 delete_comment action no 2 346 delete_link action no 1 347 delete_option action no 1 348 delete_option_{$option} note action no 1 349 delete_post action no 2 350 delete_postmeta action no 1 351 delete_site_email_content filter no 1 352 delete_site_option action no 1 353 delete_site_option_{$option} note action no 1 354 delete_site_transient_{$transient} note action no 1 355 delete_term action no 1 356 delete_term_relationships action no 1 357 delete_term_taxonomy action no 1 358 delete_transient_{$transient} note action no 1 359 delete_user action no 1 360 delete_usermeta action no 1 361 delete_{$meta_type}meta note action no 1 362 delete_{$meta_type}_meta note action no 2 363 delete_{$meta_type}_metadata note filter no 1 364 delete_{$taxonomy} note action no 1 365 deprecated_argument_run action no 1 366 deprecated_argument_trigger_error filter no 1 367 deprecated_file_included action no 1 368 deprecated_file_trigger_error filter no 1 369 deprecated_function_run action no 1 370 deprecated_function_trigger_error filter no 1 371 determine_current_user filter YES 1 372 disable_captions filter no 7 373 display_media_states filter no 1 374 display_post_states filter no 1 375 documentation_ignore_functions filter no 1 376 doing_it_wrong_run action no 1 377 doing_it_wrong_trigger_error filter no 1 378 domain_exists filter no 1 379 do_meta_boxes action no 8 380 do_mu_upgrade filter no 1 381 do_parse_request filter no 1 382 do_robots action no 1 383 do_robotstxt action no 1 384 dynamic_sidebar action no 1 385 dynamic_sidebar_after action YES 2 386 dynamic_sidebar_before action YES 2 387 dynamic_sidebar_has_widgets filter YES 2 388 dynamic_sidebar_params filter no 1 389 editable_extensions filter no 1 390 editable_roles filter no 1 391 editable_slug filter no 7 392 edited_term action no 1 393 edited_terms action no 4 394 edited_term_taxonomies action no 1 395 edited_term_taxonomy action no 3 396 edited_{$taxonomy} note action no 1 397 editor_max_image_size filter no 1 398 edit_attachment action no 1 399 edit_bookmark_link filter no 1 400 edit_categories_per_page filter no 2 401 edit_category_form action no 2 402 edit_category_form_fields action no 1 403 edit_category_form_pre action no 1 404 edit_comment action no 1 405 edit_comment_link filter no 1 406 edit_form_advanced action no 1 407 edit_form_after_editor action no 1 408 edit_form_after_title action no 1 409 edit_form_top action no 1 410 edit_link action no 1 411 edit_link_category_form action no 2 412 edit_link_category_form_fields action no 1 413 edit_link_category_form_pre action no 1 414 edit_page_form action no 1 415 edit_post action no 3 416 edit_posts_per_page filter no 3 417 edit_post_link filter no 1 418 edit_post_{$field} note filter no 1 419 edit_profile_url filter no 1 420 edit_tags_per_page filter no 1 421 edit_tag_form action no 1 422 edit_tag_form_fields action no 1 423 edit_tag_form_pre action no 1 424 edit_tag_link filter no 1 425 edit_term action no 1 426 edit_terms action no 4 427 edit_term_link filter no 1 428 edit_term_taxonomies action no 1 429 edit_term_taxonomy action no 3 430 edit_term_{$field} note filter no 1 431 edit_user_profile action no 1 432 edit_user_profile_update action no 1 433 edit_user_{$field} note filter no 1 434 edit_{$field} note filter no 3 435 edit_{$taxonomy} note action no 1 436 edit_{$taxonomy}_{$field} note filter no 1 437 embed_cache_oembed_types filter no 1 438 embed_defaults filter no 1 439 embed_googlevideo filter no 1 440 embed_handler_html filter no 1 441 embed_maybe_make_link filter no 1 442 embed_oembed_discover filter no 1 443 embed_oembed_html filter no 2 444 enable_edit_any_user_configuration filter no 1 445 enable_live_network_counts filter no 2 446 enable_post_by_email_configuration filter no 4 447 enable_update_services_configuration filter no 2 448 end_fetch_post_thumbnail_html action no 1 449 enter_title_here filter no 2 450 esc_html filter no 1 451 esc_textarea filter no 1 452 excerpt_length filter no 1 453 excerpt_more filter no 1 454 exit_on_http_head filter no 1 455 export_args filter no 1 456 export_filters action no 1 457 export_wp action no 1 458 ext2type filter no 1 459 extra_theme_headers filter no 1 460 extra_{$context}_headers note filter no 1 461 feed_content_type filter no 1 462 feed_link filter no 1 463 filesystem_method filter no 1 464 filesystem_method_file filter no 1 465 file_is_displayable_image filter no 1 466 flush_rewrite_rules_hard filter no 1 467 force_filtered_html_on_import filter no 1 468 format_to_edit filter no 1 469 found_posts filter no 1 470 found_posts_query filter no 1 471 found_users_query filter no 1 472 fs_ftp_connection_types filter no 1 473 gallery_style filter no 1 474 generate_rewrite_rules action no 1 475 getarchives_join filter no 1 476 getarchives_where filter no 1 477 getimagesize_mimes_to_exts filter no 1 478 gettext filter no 1 479 gettext_with_context filter no 1 480 get_ancestors filter no 2 481 get_archives_link filter no 1 482 get_attached_file filter no 1 483 get_attached_media filter no 1 484 get_attached_media_args filter no 1 485 get_avatar filter no 1 486 get_avatar_comment_types filter no 1 487 get_bloginfo_rss filter no 2 488 get_blogs_of_user filter no 1 489 get_bookmarks filter no 3 490 get_calendar filter no 4 491 get_categories_taxonomy filter no 1 492 get_comment filter no 1 493 get_comments_link filter no 1 494 get_comments_number filter no 1 495 get_comments_pagenum_link filter no 1 496 get_comment_author filter no 1 497 get_comment_author_email filter no 1 498 get_comment_author_IP filter no 1 499 get_comment_author_link filter no 2 500 get_comment_author_url filter no 1 501 get_comment_author_url_link filter no 1 502 get_comment_date filter no 1 503 get_comment_excerpt filter no 1 504 get_comment_ID filter no 1 505 get_comment_link filter no 1 506 get_comment_text filter no 1 507 get_comment_time filter no 1 508 get_comment_type filter no 1 509 get_date_sql filter no 1 510 get_delete_post_link filter no 1 511 get_editable_authors filter no 1 512 get_edit_bookmark_link filter no 1 513 get_edit_comment_link filter no 1 514 get_edit_post_link filter no 1 515 get_edit_tag_link filter no 1 516 get_edit_term_link filter no 1 517 get_edit_user_link filter no 1 518 get_enclosed filter no 1 519 get_footer action no 1 520 get_header action no 1 521 get_image_tag filter no 1 522 get_image_tag_class filter no 1 523 get_lastpostdate filter no 1 524 get_lastpostmodified filter no 1 525 get_media_item_args filter no 2 526 get_meta_sql filter no 1 527 get_others_drafts filter no 1 528 get_pagenum_link filter no 1 529 get_pages filter no 3 530 get_post_galleries filter no 1 531 get_post_gallery filter no 1 532 get_post_modified_time filter no 1 533 get_post_time filter no 1 534 get_pung filter no 1 535 get_sample_permalink_html filter no 2 536 get_search_form filter no 1 537 get_search_query filter no 1 538 get_shortlink filter no 1 539 get_sidebar action no 1 540 get_space_allowed filter no 1 541 get_tags filter no 1 542 get_template_part_{$slug} note action no 1 543 get_term filter no 2 544 get_terms filter no 3 545 get_terms_args filter no 1 546 get_terms_fields filter no 1 547 get_terms_orderby filter no 1 548 get_the_author_{$field} note filter no 1 549 get_the_categories filter no 1 550 get_the_date filter no 1 551 get_the_excerpt filter no 1 552 get_the_generator_{$type} note filter no 1 553 get_the_guid filter no 1 554 get_the_modified_date filter no 1 555 get_the_modified_time filter no 1 556 get_the_tags filter no 1 557 get_the_terms filter no 1 558 get_the_time filter no 1 559 get_to_ping filter no 1 560 get_usernumposts filter no 1 561 get_users_drafts filter no 1 562 get_user_option_{$option} note filter no 1 563 get_wp_title_rss filter no 1 564 get_{$adjacent}_post_join note filter no 1 565 get_{$adjacent}_post_sort note filter no 1 566 get_{$adjacent}_post_where note filter no 1 567 get_{$meta_type}_metadata note filter no 2 568 get_{$taxonomy} note filter no 2 569 global_terms_enabled filter no 1 570 got_rewrite filter no 1 571 got_url_rewrite filter no 1 572 graceful_fail filter no 1 573 graceful_fail_template filter no 1 574 granted_super_admin action no 1 575 grant_super_admin action no 1 576 heartbeat_nopriv_received filter no 1 577 heartbeat_nopriv_send filter no 1 578 heartbeat_nopriv_tick action no 1 579 heartbeat_received filter no 1 580 heartbeat_send filter no 1 581 heartbeat_settings filter no 1 582 heartbeat_tick action no 1 583 hidden_meta_boxes filter no 1 584 home_url filter no 1 585 htmledit_pre filter no 1 586 https_local_ssl_verify filter no 3 587 https_ssl_verify filter no 2 588 http_api_curl action no 1 589 http_api_debug action no 1 590 http_api_transports filter no 1 591 http_headers_useragent filter no 2 592 http_origin filter no 1 593 http_request_args filter no 1 594 http_request_host_is_external filter no 1 595 http_request_redirection_count filter no 1 596 http_request_reject_unsafe_urls filter no 1 597 http_request_timeout filter no 1 598 http_request_version filter no 1 599 http_response filter no 1 600 icon_dir filter no 3 601 icon_dirs filter no 1 602 icon_dir_uri filter no 1 603 iis7_supports_permalinks filter no 1 604 iis7_url_rewrite_rules filter no 1 605 image_add_caption_shortcode filter no 1 606 image_downsize filter no 2 607 image_editor_default_mime_type filter no 1 608 image_editor_save_pre filter no 2 609 image_edit_before_change filter no 1 610 image_make_intermediate_size filter no 2 611 image_memory_limit filter no 3 612 image_resize_dimensions filter no 1 613 image_save_pre filter no 2 614 image_send_to_editor filter no 1 615 image_send_to_editor_url filter no 1 616 image_size_names_choose filter no 5 617 img_caption_shortcode filter no 1 618 img_caption_shortcode_width filter no 1 619 import_upload_size_limit filter no 1 620 includes_url filter no 1 621 incompatible_sql_modes filter YES 1 622 index_rel_link filter no 1 623 init action no 1 624 install_plugins_nonmenu_tabs filter no 1 625 install_plugins_pre_{$tab} note action no 1 626 install_plugins_table_api_args_{$tab} note filter no 1 627 install_plugins_table_header action no 1 628 install_plugins_tabs filter no 1 629 install_plugins_{$tab} note action no 1 630 install_plugin_complete_actions filter no 1 631 install_themes_nonmenu_tabs filter no 1 632 install_themes_pre_{$tab} note action no 1 633 install_themes_table_api_args_{$old_filter} note filter YES 1 634 install_themes_table_api_args_{$tab} note filter no 1 635 install_themes_table_header action no 1 636 install_themes_tabs filter no 1 637 install_themes_{$tab} note action no 1 638 install_theme_complete_actions filter no 1 639 intermediate_image_sizes filter no 1 640 intermediate_image_sizes_advanced filter no 1 641 in_admin_footer action no 1 642 in_admin_header action no 1 643 in_plugin_update_message-{$file} note action no 1 644 in_theme_update_message-{$theme_key} note action no 1 645 in_widget_form action no 1 646 is_active_sidebar filter YES 1 647 is_email filter no 9 648 is_email_address_unsafe filter no 1 649 is_multi_author filter no 1 650 is_protected_meta filter no 1 651 is_wide_widget_in_customizer filter YES 1 652 jpeg_quality filter no 2 653 js_escape filter no 1 654 kses_allowed_protocols filter no 1 655 language_attributes filter no 1 656 lang_codes filter no 1 657 link_category filter no 3 658 link_title filter no 1 659 list_cats filter no 5 660 list_pages filter no 1 661 list_terms_exclusions filter no 1 662 load-categories-php action no 1 663 load-edit-link-categories-php action no 1 664 load-importer-{$importer} note action no 1 665 load-page-new-php action no 1 666 load-page-php action no 1 667 load-widgets-php action no 3 668 load-{$pagenow} note action no 1 669 load-{$page_hook} note action no 1 670 load-{$plugin_page} note action no 1 671 load_default_embeds filter no 1 672 load_default_widgets filter no 1 673 load_feed_engine action no 1 674 load_image_to_edit filter no 1 675 load_image_to_edit_attachmenturl filter no 1 676 load_image_to_edit_filesystempath filter no 1 677 load_image_to_edit_path filter no 1 678 load_textdomain action no 1 679 load_textdomain_mofile filter no 1 680 locale filter no 2 681 locale_stylesheet_uri filter no 1 682 loginout filter no 2 683 login_body_class filter no 1 684 login_enqueue_scripts action no 1 685 login_errors filter no 1 686 login_footer action no 2 687 login_form action no 1 688 login_form_bottom filter no 1 689 login_form_defaults filter no 1 690 login_form_middle filter no 1 691 login_form_top filter no 1 692 login_form_{$action} note action no 1 693 login_head action no 1 694 login_headertitle filter no 1 695 login_headerurl filter no 1 696 login_init action no 1 697 login_message filter no 1 698 login_messages filter no 1 699 login_redirect filter no 1 700 login_url filter no 1 701 logout_url filter no 1 702 loop_end action no 1 703 loop_start action no 1 704 lostpassword_form action no 1 705 lostpassword_post action no 1 706 lostpassword_redirect filter no 1 707 lostpassword_url filter no 1 708 lost_password action no 1 709 make_delete_blog action no 2 710 make_ham_blog action no 2 711 make_ham_user action no 1 712 make_spam_blog action no 2 713 make_spam_user action no 1 714 make_undelete_blog action no 2 715 manage_comments_custom_column action no 1 716 manage_comments_nav action no 1 717 manage_link_custom_column action no 1 718 manage_media_columns filter no 1 719 manage_media_custom_column action no 1 720 manage_pages_columns filter no 1 721 manage_pages_custom_column action no 1 722 manage_plugins_custom_column action no 1 723 manage_posts_columns filter no 1 724 manage_posts_custom_column action no 1 725 manage_sites_action_links filter no 1 726 manage_sites_custom_column action no 1 727 manage_taxonomies_for_attachment_columns filter no 1 728 manage_taxonomies_for_{$post_type}_columns note filter no 1 729 manage_themes_custom_column action no 1 730 manage_users_custom_column filter no 2 731 manage_{$post->post_type}_posts_custom_column note action no 1 732 manage_{$post_type}_posts_columns note filter no 1 733 manage_{$screen->id}_columns note filter no 1 734 manage_{$this->screen->id}_sortable_columns note filter no 1 735 manage_{$this->screen->taxonomy}_custom_column note filter no 1 736 map_meta_cap filter no 1 737 mature_blog action no 2 738 mce_buttons filter no 1 739 mce_buttons_2 filter no 1 740 mce_buttons_3 filter no 1 741 mce_buttons_4 filter no 1 742 mce_css filter no 1 743 mce_external_languages filter no 1 744 mce_external_plugins filter no 1 745 media_buttons action no 1 746 media_buttons_context filter no 1 747 media_meta filter no 3 748 media_row_actions filter no 1 749 media_send_to_editor filter no 2 750 media_submitbox_misc_sections filter no 1 751 media_upload_default_tab filter no 2 752 media_upload_default_type filter no 1 753 media_upload_form_url filter no 4 754 media_upload_mime_type_links filter no 1 755 media_upload_tabs filter no 2 756 media_upload_{$tab} note action no 1 757 media_upload_{$type} note action no 1 758 media_view_settings filter no 1 759 media_view_strings filter no 1 760 menu_order filter no 1 761 mime_types filter no 1 762 mod_rewrite_rules filter no 1 763 months_dropdown_results filter no 1 764 month_link filter no 1 765 ms_site_check filter no 1 766 ms_site_not_found action YES 1 767 ms_user_list_site_actions filter no 1 768 ms_user_row_actions filter no 1 769 muplugins_loaded action no 1 770 mu_activity_box_end action no 1 771 mu_dropdown_languages filter no 1 772 mu_menu_items filter no 1 773 mu_rightnow_end action no 1 774 myblogs_allblogs_options action no 1 775 myblogs_blog_actions filter no 1 776 myblogs_options filter no 2 777 nav_menu_attr_title filter no 2 778 nav_menu_css_class filter no 1 779 nav_menu_description filter no 2 780 nav_menu_items_{$post_type_name} note filter no 1 781 nav_menu_item_id filter no 1 782 nav_menu_link_attributes filter no 1 783 nav_menu_meta_box_object filter no 3 784 network_admin_edit_{$action} note action no 1 785 network_admin_menu action no 1 786 network_admin_notices action no 1 787 network_admin_url filter no 1 788 network_by_path_segments_count filter YES 1 789 network_home_url filter no 1 790 network_sites_updated_message_{$updated} note filter no 1 791 network_site_url filter no 1 792 network_site_users_after_list_table action no 1 793 newblogname filter no 1 794 newblog_notify_siteadmin filter no 1 795 newuser_notify_siteadmin filter no 1 796 new_admin_email_content filter no 1 797 new_user_email_content filter no 1 798 next_comments_link_attributes filter no 1 799 next_posts_link_attributes filter no 1 800 ngettext filter no 1 801 ngettext_with_context filter no 1 802 nocache_headers filter no 1 803 nonce_life filter no 1 804 nonce_user_logged_out filter no 2 805 no_texturize_shortcodes filter no 1 806 no_texturize_tags filter no 1 807 number_format_i18n filter no 1 808 oembed_dataparse filter no 1 809 oembed_fetch_url filter no 1 810 oembed_linktypes filter no 1 811 oembed_providers filter no 1 812 oembed_result filter no 1 813 opml_head action no 1 814 option_enable_xmlrpc filter no 1 815 option_page_capability_{$option_page} note filter no 1 816 option_{$option_name} note filter YES 1 817 option_{$option} note filter no 1 818 override_load_textdomain filter no 1 819 override_post_lock filter no 1 820 override_unload_textdomain filter no 1 821 page_attributes_dropdown_pages_args filter no 1 822 page_css_class filter no 1 823 page_link filter no 1 824 page_rewrite_rules filter no 1 825 page_row_actions filter no 1 826 paginate_links filter no 3 827 parent_file filter no 1 828 parent_post_rel_link filter no 1 829 parse_query action no 1 830 parse_request action no 1 831 parse_tax_query action no 1 832 password_reset action no 1 833 password_reset_key_expired filter no 1 834 permalink_structure_changed action no 1 835 personal_options action no 1 836 personal_options_update action no 1 837 phone_content filter no 1 838 phpmailer_init action no 1 839 pingback_ping_source_uri filter no 1 840 pingback_post action no 1 841 pingback_useragent filter no 1 842 pings_open filter no 1 843 plugins_api filter no 1 844 plugins_api_args filter no 1 845 plugins_api_result filter no 1 846 plugins_loaded action no 1 847 plugins_update_check_locales filter no 1 848 plugins_url filter no 1 849 plugin_install_action_links filter no 1 850 plugin_locale filter no 2 851 plugin_row_meta filter no 1 852 plupload_default_params filter no 1 853 plupload_default_settings filter no 1 854 plupload_init filter no 1 855 populate_network_meta filter no 1 856 populate_options action no 1 857 post-html-upload-ui action no 1 858 post-plupload-upload-ui action no 3 859 post-upload-ui action no 2 860 postbox_classes_{$page}_{$id} note filter no 1 861 postmeta_form_limit filter no 1 862 posts_clauses filter no 1 863 posts_clauses_request filter no 1 864 posts_distinct filter no 1 865 posts_distinct_request filter no 1 866 posts_fields filter no 1 867 posts_fields_request filter no 1 868 posts_groupby filter no 1 869 posts_groupby_request filter no 1 870 posts_join filter no 1 871 posts_join_paged filter no 1 872 posts_join_request filter no 1 873 posts_orderby filter no 1 874 posts_orderby_request filter no 1 875 posts_request filter no 1 876 posts_request_ids filter no 1 877 posts_results filter no 1 878 posts_search filter no 1 879 posts_search_orderby filter no 1 880 posts_selection action no 1 881 posts_where filter no 1 882 posts_where_paged filter no 1 883 posts_where_request filter no 1 884 post_class filter no 1 885 post_comments_feed_link filter no 1 886 post_comments_feed_link_html filter no 1 887 post_comments_link filter no 1 888 post_comment_status_meta_box-options action no 1 889 post_date_column_time filter no 2 890 post_edit_form_tag action no 1 891 post_format_rewrite_base filter no 1 892 post_gallery filter no 1 893 post_limits filter no 1 894 post_limits_request filter no 1 895 post_link filter no 1 896 post_link_category filter no 1 897 post_locked_dialog action no 1 898 post_lock_lost_dialog action no 1 899 post_mime_types filter no 1 900 post_password_expires filter no 1 901 post_playlist filter YES 1 902 post_rewrite_rules filter no 1 903 post_row_actions filter no 1 904 post_submitbox_misc_actions action no 1 905 post_submitbox_start action no 2 906 post_thumbnail_html filter no 1 907 post_thumbnail_size filter no 1 908 post_types_to_delete_with_user filter no 1 909 post_type_archive_feed_link filter no 1 910 post_type_archive_link filter no 1 911 post_type_archive_title filter no 1 912 post_type_labels_{$post_type} note filter no 1 913 post_type_link filter no 1 914 post_updated action no 1 915 post_updated_messages filter no 1 916 post_{$field} note filter no 1 917 pre-html-upload-ui action no 1 918 pre-plupload-upload-ui action no 2 919 pre-upload-ui action no 2 920 prepend_attachment filter no 1 921 preprocess_comment filter no 1 922 preprocess_signup_form action no 1 923 preview_post_link filter no 4 924 previous_comments_link_attributes filter no 1 925 previous_posts_link_attributes filter no 1 926 pre_add_site_option_{$option} note filter no 1 927 pre_category_nicename filter no 1 928 pre_comment_approved filter no 1 929 pre_comment_author_email filter no 2 930 pre_comment_author_name filter no 2 931 pre_comment_author_url filter no 2 932 pre_comment_content filter no 1 933 pre_comment_on_post action no 1 934 pre_comment_user_agent filter no 1 935 pre_comment_user_ip filter no 1 936 pre_current_active_plugins action no 1 937 pre_delete_site_option_{$option} note action no 1 938 pre_ent2ncr filter no 1 939 pre_get_comments action no 1 940 pre_get_network_by_path filter YES 1 941 pre_get_posts action no 1 942 pre_get_search_form action no 1 943 pre_get_shortlink filter no 1 944 pre_get_site_by_path filter YES 1 945 pre_get_space_used filter no 1 946 pre_http_request filter no 1 947 pre_http_send_through_proxy filter no 1 948 pre_insert_term filter no 1 949 pre_kses filter no 1 950 pre_option_enable_xmlrpc filter no 1 951 pre_option_{$option} note filter no 1 952 pre_ping action no 1 953 pre_post_link filter no 1 954 pre_post_update action no 1 955 pre_post_{$field} note filter no 1 956 pre_remote_source filter no 1 957 pre_set_site_transient_{$transient} note filter no 1 958 pre_set_theme_mod_{$name} note filter YES 1 959 pre_set_transient_{$transient} note filter no 1 960 pre_site_option_{$option} note filter no 1 961 pre_site_transient_{$transient} note filter no 1 962 pre_term_{$field} note filter no 1 963 pre_transient_{$transient} note filter no 1 964 pre_update_option filter YES 1 965 pre_update_option_{$option} note filter no 1 966 pre_update_site_option_{$option} note filter no 1 967 pre_upload_error filter no 1 968 pre_user_description filter no 1 969 pre_user_display_name filter no 1 970 pre_user_email filter no 1 971 pre_user_first_name filter no 1 972 pre_user_id filter no 2 973 pre_user_last_name filter no 1 974 pre_user_login filter no 2 975 pre_user_nicename filter no 1 976 pre_user_nickname filter no 1 977 pre_user_query action no 1 978 pre_user_search action no 1 979 pre_user_url filter no 1 980 pre_user_{$field} note filter no 1 981 pre_wp_nav_menu filter YES 1 982 pre_{$field} note filter no 3 983 pre_{$taxonomy}_{$field} note filter no 1 984 print_admin_styles filter no 1 985 print_footer_scripts filter no 1 986 print_head_scripts filter no 1 987 print_late_styles filter no 1 988 print_media_templates action no 1 989 print_scripts_array filter no 1 990 print_styles_array filter no 1 991 privacy_on_link_text filter no 1 992 privacy_on_link_title filter no 1 993 private_title_format filter no 1 994 private_to_published action no 1 995 profile_personal_options action no 1 996 profile_update action no 1 997 protected_title_format filter no 1 998 publish_phone action no 1 999 pub_priv_sql_capability filter no 1 1000 query filter no 1 1001 query_string filter no 1 1002 query_vars filter no 1 1003 quicktags_settings filter no 1 1004 quick_edit_custom_box action no 2 1005 quick_edit_dropdown_pages_args filter no 1 1006 random_password filter no 1 1007 rdf_header action no 1 1008 rdf_item action no 1 1009 rdf_ns action no 1 1010 redirect_canonical filter no 1 1011 redirect_network_admin_request filter no 1 1012 redirect_post_location filter no 1 1013 redirect_user_admin_request filter no 1 1014 refresh_blog_details action no 1 1015 register filter no 5 1016 registered_post_type action no 1 1017 registered_taxonomy action no 1 1018 register_form action no 1 1019 register_post action no 1 1020 register_sidebar action no 1 1021 register_url filter no 1 1022 registration_errors filter no 1 1023 registration_redirect filter no 1 1024 remove_user_from_blog action no 1 1025 request filter no 1 1026 request_filesystem_credentials filter no 1 1027 resetpass_form action YES 1 1028 restrict_manage_comments action no 1 1029 restrict_manage_posts action no 2 1030 restrict_manage_users action no 1 1031 retreive_password action no 1 1032 retrieve_password action no 1 1033 retrieve_password_key action no 1 1034 retrieve_password_message filter no 1 1035 retrieve_password_title filter no 1 1036 revoked_super_admin action no 1 1037 revoke_super_admin action no 1 1038 rewrite_rules filter no 1 1039 rewrite_rules_array filter no 1 1040 richedit_pre filter no 2 1041 rightnow_end action no 1 1042 robots_txt filter no 1 1043 role_has_cap filter no 1 1044 root_rewrite_rules filter no 1 1045 rss2_comments_ns action no 1 1046 rss2_head action no 2 1047 rss2_item action no 1 1048 rss2_ns action no 2 1049 rss_enclosure filter no 1 1050 rss_head action no 1 1051 rss_item action no 1 1052 rss_update_frequency filter no 3 1053 rss_update_period filter no 3 1054 safe_style_css filter no 1 1055 salt filter no 2 1056 sanitize_comment_cookies action no 1 1057 sanitize_email filter no 8 1058 sanitize_file_name filter no 2 1059 sanitize_file_name_chars filter no 1 1060 sanitize_html_class filter no 1 1061 sanitize_key filter no 1 1062 sanitize_mime_type filter no 1 1063 sanitize_option_{$option} note filter no 1 1064 sanitize_text_field filter no 1 1065 sanitize_title filter no 1 1066 sanitize_trackback_urls filter no 1 1067 sanitize_user filter no 1 1068 sanitize_{$meta_type}_meta_{$meta_key} note filter no 1 1069 save_post action no 2 1070 save_post_{$post->post_type} note action no 2 1071 schedule_event filter no 2 1072 screen_layout_columns filter no 1 1073 screen_options_show_screen filter no 1 1074 screen_settings filter no 1 1075 script_loader_src filter no 2 1076 search_feed_link filter no 2 1077 search_form_format filter no 1 1078 search_link filter no 1 1079 search_rewrite_rules filter no 1 1080 secure_auth_cookie filter no 1 1081 secure_auth_redirect filter no 1 1082 secure_logged_in_cookie filter no 1 1083 secure_signon_cookie filter no 1 1084 self_link filter no 1 1085 send_core_update_notification_email filter no 1 1086 send_headers action no 1 1087 set-screen-option filter no 1 1088 setted_site_transient action no 1 1089 setted_transient action no 1 1090 setup_theme action no 1 1091 set_auth_cookie action no 1 1092 set_comment_cookies action no 1 1093 set_current_user action no 1 1094 set_logged_in_cookie action no 1 1095 set_object_terms action no 1 1096 set_site_transient_{$transient} note action no 1 1097 set_transient_{$transient} note action no 1 1098 set_url_scheme filter no 1 1099 set_user_role action no 1 1100 shake_error_codes filter no 1 1101 shortcode_atts_{$shortcode} note filter no 1 1102 shortcut_link filter no 1 1103 show_admin_bar filter no 1 1104 show_advanced_plugins filter no 2 1105 show_network_site_users_add_existing_form filter no 2 1106 show_network_site_users_add_new_form filter no 1 1107 show_password_fields filter no 2 1108 show_post_locked_dialog filter no 1 1109 show_recent_comments_widget_style filter no 1 1110 show_user_profile action no 1 1111 shutdown action no 1 1112 sidebars_widgets filter no 1 1113 sidebar_admin_page action no 1 1114 sidebar_admin_setup action no 4 1115 signup_another_blog_init filter no 1 1116 signup_blogform action no 1 1117 signup_blog_init filter no 1 1118 signup_create_blog_meta filter no 1 1119 signup_extra_fields action no 1 1120 signup_finished action no 3 1121 signup_header action no 1 1122 signup_hidden_fields action no 3 1123 signup_user_init filter no 1 1124 single_cat_title filter no 1 1125 single_post_title filter no 1 1126 single_tag_title filter no 1 1127 single_term_title filter no 1 1128 site_by_path_segments_count filter YES 1 1129 site_option_{$option} note filter no 1 1130 site_transient_{$transient} note filter no 1 1131 site_url filter no 1 1132 smilies_src filter no 1 1133 spammed_comment action no 1 1134 spam_comment action no 1 1135 split_the_query filter no 1 1136 start_previewing_theme action no 1 1137 status_header filter no 1 1138 stop_previewing_theme action no 1 1139 stylesheet filter no 1 1140 stylesheet_directory filter no 1 1141 stylesheet_directory_uri filter no 1 1142 stylesheet_uri filter no 1 1143 style_loader_src filter no 1 1144 style_loader_tag filter no 2 1145 subdirectory_reserved_names filter no 2 1146 submitlink_box action no 2 1147 submitpage_box action no 1 1148 submitpost_box action no 1 1149 switch_blog action no 4 1150 switch_theme action no 1 1151 tables_to_repair filter no 1 1152 tagsperpage filter no 1 1153 tag_cloud_sort filter no 1 1154 tag_escape filter no 1 1155 tag_feed_link filter no 1 1156 tag_link filter no 1 1157 tag_rewrite_rules filter no 1 1158 tag_row_actions filter no 1 1159 taxonomy_feed_link filter no 1 1160 taxonomy_parent_dropdown_args filter no 1 1161 teeny_mce_before_init filter no 1 1162 teeny_mce_buttons filter no 1 1163 teeny_mce_plugins filter no 1 1164 template filter no 1 1165 template_directory filter no 1 1166 template_directory_uri filter no 1 1167 template_include filter no 1 1168 template_redirect action no 1 1169 terms_clauses filter no 1 1170 terms_to_edit filter no 1 1171 term_id_filter filter no 2 1172 term_link filter no 1 1173 term_links-{$taxonomy} note filter no 1 1174 term_name filter no 1 1175 term_updated_messages filter no 1 1176 term_{$field} note filter no 1 1177 term_{$field}_rss note filter no 1 1178 themes_api filter no 1 1179 themes_api_args filter no 1 1180 themes_api_result filter no 1 1181 themes_update_check_locales filter no 1 1182 theme_action_links filter no 2 1183 theme_action_links_{$stylesheet} note filter no 2 1184 theme_install_actions filter no 1 1185 theme_locale filter no 1 1186 theme_mod_{$name} note filter no 2 1187 theme_page_templates filter YES 1 1188 theme_root filter no 1 1189 theme_root_uri filter no 1 1190 theme_row_meta filter no 1 1191 the_author filter no 1 1192 the_author_posts_link filter no 1 1193 the_author_{$field} note filter no 1 1194 the_category filter no 7 1195 the_category_rss filter no 1 1196 the_comments filter no 1 1197 the_content filter no 4 1198 the_content_export filter no 1 1199 the_content_feed filter no 1 1200 the_content_more_link filter no 1 1201 the_content_rss filter no 1 1202 the_date filter no 1 1203 the_editor filter no 1 1204 the_editor_content filter no 1 1205 the_excerpt filter no 2 1206 the_excerpt_export filter no 1 1207 the_excerpt_rss filter no 1 1208 the_feed_link filter no 1 1209 the_generator filter no 1 1210 the_meta_key filter no 1 1211 the_modified_author filter no 1 1212 the_modified_date filter no 1 1213 the_modified_time filter no 1 1214 the_password_form filter no 1 1215 the_permalink filter no 4 1216 the_permalink_rss filter no 1 1217 the_post action no 1 1218 the_posts filter no 1 1219 the_preview filter no 1 1220 the_search_query filter no 1 1221 the_shortlink filter no 1 1222 the_tags filter no 1 1223 the_terms filter no 1 1224 the_time filter no 1 1225 the_title filter no 13 1226 the_title_rss filter no 4 1227 the_weekday filter no 1 1228 the_weekday_date filter no 1 1229 the_widget action no 1 1230 thread_comments_depth_max filter no 1 1231 time_formats filter no 1 1232 tiny_mce_before_init filter no 1 1233 tiny_mce_plugins filter no 1 1234 tool_box action no 1 1235 trackback_post action no 1 1236 trackback_url filter no 1 1237 transient_{$transient} note filter no 1 1238 transition_comment_status action no 1 1239 transition_post_status action no 1 1240 trashed_comment action no 1 1241 trashed_post action no 1 1242 trashed_post_comments action no 1 1243 trash_comment action no 1 1244 trash_post_comments action no 1 1245 twentyfourteen_attachment_size filter no 1 1246 twentyfourteen_credits action no 1 1247 twentyfourteen_custom_background_args filter no 1 1248 twentyfourteen_custom_header_args filter no 1 1249 twentyfourteen_featured_posts_after action no 1 1250 twentyfourteen_featured_posts_before action no 1 1251 twentyfourteen_get_featured_posts filter no 1 1252 twentythirteen_attachment_size filter no 1 1253 twentythirteen_author_bio_avatar_size filter no 1 1254 twentythirteen_credits action no 1 1255 twentytwelve_attachment_size filter no 1 1256 twentytwelve_author_bio_avatar_size filter no 2 1257 twentytwelve_credits action no 1 1258 twentytwelve_status_avatar filter no 1 1259 type_url_form_media filter no 1 1260 unarchive_blog action no 2 1261 uninstall_{$file} note action no 1 1262 unload_textdomain action no 1 1263 unmature_blog action no 2 1264 unspammed_comment action no 1 1265 unspam_comment action no 1 1266 untrashed_comment action no 1 1267 untrashed_post action no 1 1268 untrashed_post_comments action no 1 1269 untrash_comment action no 1 1270 untrash_post action no 1 1271 untrash_post_comments action no 1 1272 unzip_file_use_ziparchive filter no 1 1273 update-core-custom_{$action} note action no 1 1274 update-custom_{$action} note action no 1 1275 updated_option action no 1 1276 updated_postmeta action no 2 1277 updated_usermeta action no 1 1278 updated_{$meta_type}_meta note action no 2 1279 update_attached_file filter no 1 1280 update_blog_public action no 1 1281 update_bulk_plugins_complete_actions filter no 1 1282 update_bulk_theme_complete_actions filter no 1 1283 update_feedback filter no 8 1284 update_footer filter no 1 1285 update_option action no 1 1286 update_option_{$option} note action no 1 1287 update_plugin_complete_actions filter no 1 1288 update_postmeta action no 2 1289 update_site_option action no 1 1290 update_site_option_{$option} note action no 1 1291 update_theme_complete_actions filter no 1 1292 update_translations_complete_actions filter no 1 1293 update_usermeta action no 1 1294 update_welcome_email filter no 1 1295 update_welcome_subject filter no 1 1296 update_welcome_user_email filter no 1 1297 update_welcome_user_subject filter no 1 1298 update_wpmu_options action no 1 1299 update_{$meta_type}_meta note action no 2 1300 update_{$meta_type}_metadata note filter no 1 1301 upgrader_clear_destination filter no 1 1302 upgrader_post_install filter no 1 1303 upgrader_pre_download filter no 1 1304 upgrader_pre_install filter no 1 1305 upgrader_process_complete action no 4 1306 upgrader_source_selection filter no 1 1307 upload_dir filter no 1 1308 upload_mimes filter no 1 1309 upload_per_page filter no 1 1310 upload_post_params filter no 1 1311 upload_size_limit filter no 1 1312 upload_ui_over_quota action no 2 1313 url_to_postid filter no 1 1314 user_admin_menu action no 1 1315 user_admin_notices action no 1 1316 user_admin_url filter no 1 1317 user_can_richedit filter no 1 1318 user_contactmethods filter no 1 1319 user_dashboard_url filter no 1 1320 user_edit_form_tag action no 1 1321 user_has_cap filter no 1 1322 user_new_form action no 2 1323 user_new_form_tag action no 2 1324 user_profile_update_errors action no 1 1325 user_register action no 1 1326 user_registration_email filter no 1 1327 user_row_actions filter no 1 1328 user_search_columns filter no 1 1329 user_trailingslashit filter no 1 1330 user_{$field} note filter no 1 1331 user_{$name}_label note filter no 1 1332 use_curl_transport filter no 1 1333 use_default_gallery_style filter no 1 1334 use_google_chrome_frame filter no 1 1335 use_streams_transport filter no 1 1336 validate_current_theme filter no 1 1337 validate_password_reset action no 1 1338 validate_username filter no 1 1339 views_{$this->screen->id} note filter no 1 1340 walker_nav_menu_start_el filter no 1 1341 welcome_panel action no 1 1342 whitelist_options filter no 1 1343 widgets-php action no 3 1344 widgets_admin_page action no 1 1345 widgets_init action no 1 1346 widget_archives_args filter no 1 1347 widget_archives_dropdown_args filter no 1 1348 widget_categories_args filter no 1 1349 widget_categories_dropdown_args filter no 1 1350 widget_comments_args filter no 1 1351 widget_customizer_setting_args filter YES 1 1352 widget_display_callback filter no 1 1353 widget_form_callback filter no 1 1354 widget_links_args filter no 1 1355 widget_meta_poweredby filter no 1 1356 widget_pages_args filter no 1 1357 widget_posts_args filter no 1 1358 widget_tag_cloud_args filter no 1 1359 widget_text filter no 1 1360 widget_title filter no 13 1361 widget_update_callback filter no 1 1362 wp action no 1 1363 wp-mail-php action no 1 1364 wpmuadminedit action no 4 1365 wpmuadminresult action no 1 1366 wpmublogsaction action no 1 1367 wpmueditblogaction action no 1 1368 wpmu_activate_blog action no 1 1369 wpmu_activate_user action no 1 1370 wpmu_active_signup filter no 1 1371 wpmu_blogs_columns filter no 1 1372 wpmu_blog_updated action no 1 1373 wpmu_delete_blog_upload_dir filter no 1 1374 wpmu_delete_user action no 1 1375 wpmu_drop_tables filter no 1 1376 wpmu_new_blog action no 1 1377 wpmu_new_user action no 1 1378 wpmu_options action no 1 1379 wpmu_signup_blog_notification filter no 1 1380 wpmu_signup_blog_notification_email filter no 1 1381 wpmu_signup_blog_notification_subject filter no 1 1382 wpmu_signup_user_notification filter no 1 1383 wpmu_signup_user_notification_email filter no 1 1384 wpmu_signup_user_notification_subject filter no 1 1385 wpmu_update_blog_options action no 1 1386 wpmu_upgrade_page action no 1 1387 wpmu_upgrade_site action no 1 1388 wpmu_users_columns filter no 1 1389 wpmu_validate_blog_signup filter no 1 1390 wpmu_validate_user_signup filter no 1 1391 wpmu_welcome_notification filter no 1 1392 wpmu_welcome_user_notification filter no 1 1393 wp_admin_bar_class filter no 1 1394 wp_admin_css filter no 2 1395 wp_admin_css_uri filter no 1 1396 wp_after_admin_bar_render action no 1 1397 wp_ajax_nopriv_{$action} note action no 1 1398 wp_ajax_{$action} note action no 1 1399 wp_audio_embed_handler filter no 1 1400 wp_audio_extensions filter no 1 1401 wp_audio_shortcode filter no 1 1402 wp_audio_shortcode_class filter no 1 1403 wp_audio_shortcode_library filter no 1 1404 wp_audio_shortcode_override filter no 1 1405 wp_authenticate action no 1 1406 wp_authenticate_user filter no 1 1407 wp_auth_check_interval filter no 1 1408 wp_auth_check_load filter no 1 1409 wp_auth_check_same_domain filter no 1 1410 wp_before_admin_bar_render action no 1 1411 wp_blacklist_check action no 1 1412 wp_cache_themes_persistently filter no 2 1413 wp_checkdate filter no 1 1414 wp_check_filetype_and_ext filter no 1 1415 wp_check_post_lock_window filter no 2 1416 wp_comment_reply filter no 1 1417 wp_count_attachments filter no 1 1418 wp_count_comments filter no 1 1419 wp_count_posts filter no 1 1420 wp_create_file_in_uploads action no 2 1421 wp_create_file_in_uploads filter no 3 1422 wp_create_nav_menu action no 1 1423 wp_create_thumbnail filter no 1 1424 wp_dashboard_setup action no 1 1425 wp_dashboard_widgets filter no 1 1426 wp_default_editor filter no 1 1427 wp_default_scripts action no 1 1428 wp_default_styles action no 1 1429 wp_delete_file filter no 9 1430 wp_delete_nav_menu action no 1 1431 wp_delete_post_revision action no 1 1432 wp_die_ajax_handler filter no 1 1433 wp_die_handler filter no 1 1434 wp_die_xmlrpc_handler filter no 1 1435 wp_dropdown_cats filter no 1 1436 wp_dropdown_pages filter no 1 1437 wp_dropdown_users filter no 1 1438 wp_editor_set_quality filter no 1 1439 wp_edit_nav_menu_walker filter no 2 1440 wp_embed_handler_audio filter no 1 1441 wp_embed_handler_video filter no 1 1442 wp_enqueue_editor action YES 1 1443 wp_enqueue_media action no 1 1444 wp_enqueue_scripts action no 1 1445 wp_feed_cache_transient_lifetime filter no 2 1446 wp_feed_options action no 1 1447 wp_footer action no 1 1448 wp_fullscreen_buttons filter no 1 1449 wp_generate_attachment_metadata filter no 1 1450 wp_generate_tag_cloud filter no 1 1451 wp_generator_type filter no 1 1452 wp_get_attachment_id3_keys filter YES 1 1453 wp_get_attachment_image_attributes filter no 1 1454 wp_get_attachment_link filter no 1 1455 wp_get_attachment_metadata filter no 1 1456 wp_get_attachment_thumb_file filter no 1 1457 wp_get_attachment_thumb_url filter no 1 1458 wp_get_attachment_url filter no 1 1459 wp_get_current_commenter filter no 1 1460 wp_get_nav_menus filter no 1 1461 wp_get_nav_menu_items filter no 1 1462 wp_get_object_terms filter no 1 1463 wp_get_update_data filter no 1 1464 wp_handle_upload filter no 3 1465 wp_handle_upload_prefilter filter no 1 1466 wp_head action no 1 1467 wp_headers filter no 1 1468 wp_header_image_attachment_metadata filter YES 1 1469 wp_http_accept_encoding filter no 1 1470 wp_http_cookie_value filter no 1 1471 wp_image_editors filter no 1 1472 wp_image_editor_before_change filter no 1 1473 wp_insert_attachment_data filter YES 1 1474 wp_insert_comment action no 1 1475 wp_insert_post action no 2 1476 wp_insert_post_data filter no 1 1477 wp_insert_post_empty_content filter no 1 1478 wp_insert_post_parent filter no 1 1479 wp_install action YES 1 1480 wp_is_large_network filter no 2 1481 wp_kses_allowed_html filter no 6 1482 wp_link_pages filter no 1 1483 wp_link_pages_args filter no 1 1484 wp_link_pages_link filter no 3 1485 wp_link_query filter no 1 1486 wp_link_query_args filter no 1 1487 wp_list_bookmarks filter no 1 1488 wp_list_categories filter no 1 1489 wp_list_pages filter no 1 1490 wp_list_pages_excludes filter no 1 1491 wp_loaded action no 1 1492 wp_login action no 1 1493 wp_login_errors filter no 1 1494 wp_login_failed action no 1 1495 wp_logout action no 1 1496 wp_mail filter no 1 1497 wp_mail_charset filter no 1 1498 wp_mail_content_type filter no 1 1499 wp_mail_from filter no 1 1500 wp_mail_from_name filter no 1 1501 wp_mail_original_content filter no 1 1502 wp_maybe_auto_update action YES 1 WP 2 09/09/2023 WP Query Merging Two Wordpress Databases merge wordpress databases left join posts http://wordpress.stackexchange.com/questions/94018/merging-two-wp-posts-tables-while-avoiding-duplicates Import the new table as wp_posts_2, then join them and delete all duplicates based on post_content; then merge the two tables. The following SQL query (untested!) should give the posts from the new table to be deleted: SELECT wp2.* FROM wp_posts_2 as wp2 LEFT JOIN wp_posts as wp ON wp2.post_content = wp.post_content WHERE wp2.post_content = wp.post_content So, you can delete the entries with this query (also untested): DELETE wp_posts_2.* LEFT JOIN wp_posts as wp ON wp_posts_2.post_content = wp.post_content WHERE wp_posts_2.post_content = wp.post_content Then merge the two tables. WP 666 09/09/2023 WP Server Passing Php Variables To Page url passing variables example wordpress url http://www.mydomain.com/client-login/?UR=stevew@thickairnet.com&PD=testproduct If you are not creating a theme: 1. Make sure the php plugin is installed if you want to add php code using the page editor. 2. Add the varibles at the end of the path as below. http://www.mydomain.com/client-login/?UR=stevew@thickairnet.com&PD=testproduct 3. You can use the $_GET[] to retrieve the variables Getting a current URL in WordPress can be done in several ways depending on your needs and the page type. Here’s the most common: Using Global $wp Object The $wp global object provides the simplest way to obtain the current URL. It gives you access to WordPress query vars, which you can then use to generate the URL dynamically. Here’s how. Global $wp; $current_url = home_url(add_query_arg(array(), $wp->request)); This gets the full URL of the current page, including query vars. It’s useful because it works everywhere, single posts, pages, and archives. Pros: Flexible and works with all WordPress pages. Includes query vars, perfect for tracking or debugging. Use Case: For developers who need to generate URLs dynamically in templates or plugins. Just add this to any PHP template file and you’re done! Using get_permalink()Function get_permalink() is best when you already have a context-aware template. Here’s the code: $current_url = get_permalink(get_queried_object_id()); This gets the URL of the queried object (post, page, or custom post type). It’s simple and works well for single posts or page templates like single.php or page.php. Pros: Easy to use for single pages or posts. No need to handle query variables manually. Use Case: Use this for navigation links or tracking user activity on specific pages. It’s simple and perfect for specific templates. Using home_url() for Homepage URL If you want the homepage URL, WordPress has a function for that: $current_url = home_url(‘/’); This will always give you the base URL of your WordPress site, regardless of the page you are on. Pros: Super simple. Works for the root URL of your site. Use Case: For global settings, navigation lin, ks, or creating absolute URLs in your code. Taxonomy or Author URLs For taxonomy terms (categories or tags), use get_term_link(). For author archives, use get_author_posts_url(). Taxonomy URL: $current_url = get_term_link(get_query_object_id()); Author URL: $current_url = get_author_posts_url(get_queried_object_id()); Pros: Template-specific, therefore less processing. Ideal for archive pages, such as categories or tags. Use Case: You can use this to customize archive page navigation or to create context-specific breadcrumbs. Using PHP superglobals ($_SERVER) Another method for obtaining the current URL in WordPress is to use PHP superglobals. These variables provide direct access to server-side data, allowing you to manually construct the URL. Here’s how you can accomplish it: $current_url equals ‘http://’. $_SERVER[‘HTTP_HOST’] . $_SERVER[‘REQUEST_URI’]; Pros: Not dependent on WordPress functions so can be used in any PHP environment. Works on all types of pages, from single posts to archives. Use Case: Perfect when you need flexibility and are not tied to WordPress template files or functions. Useful for plugins or themes that may run outside the WordPress loop. Each has advantages, so choose the one that best suits your WordPress project! By combining superglobals with other WordPress-specific functions, you can create powerful URL-fetching tools tailored to your needs. Bonus: Get the Current Slug Sometimes you just need the slug—the short part of the URL that identifies a page or post. For example, if the URL is https://yourwebsite.com/my-post the slug would be my-post. Getting the slug can be super useful for custom dynamic content or URL-based conditions. Here’s a quick snippet to get the current slug: global $wp; $current_slug = add_query_arg(array(), $wp->request); WP 1302 09/09/2023 WP Server Moving Wordpress Site From Design Folder. moving move wordpress admin When moving a wordpress site from a sub folder to the root folder, use the File Manager located in your cPanel. It will make it easy to select the files and folders and COPY (not MOVE) them at blazing speeds. Make sure that you select the wordpress files and underlying folders and press the copy button. It will ask you where to put them. After that make sure that you login under the sub folder wordpress admin and change the word press url and the admin url under the "general setting". This will redirect your subfolder wordpress to the root folder wordpress. After you see that the new site and admin all work without the subfolder name in the url, you can use file manager to delete the subfolder. WP 671 09/09/2023 WP Setup What Is The Minimun User Permissions grant user permissions database create tables privileges install Below is an example of the minimum privileges a database user needs to have. Other database permissions are regarded as "extra" privileges that in most cases are not needed. A typical WordPress user should be granted the following database privileges only: SELECT INSERT UPDATE Example of How to Grant Access Privileges If you are upgrading WordPress, the above database permissions might not suffice between versions, WordPress might need to make further changes to the database. In this case, if you are only upgrading to the latest version of WordPress, add the below privileges to the WordPress database user: CREATE: You will definitely need this if you manually install WordPress and have it create the tables. ALTER: I have been getting along without this one. You probably can to. NOTE: Some plugins might require additional database privileges such as CREATE, DROP ( I have never needed this one.) or DELETE and in those cases these privileges should be granted. If you have someone doing data entry, DELETE may be very important. WP 1735 09/09/2023 WP Setup Disable Website While You Are Designing Or Making Major Changes disable under construction genesis framework In the header.php file of genisis frame work. Since you logged in through admin you can edit an see page changes. Non logged in cannot see pages. if(!is_user_logged_in()){ echo "This site is under construction"; exit; } WP 1059 09/09/2023 WP Setup Data List Plugin widget data list plugin WP_Widget register_widget add_action This plug in just displays a list of language types for computers and web development /* Plugin Name: Language Categories Plugin URI: http://softwarewebdesign.com Description: List Language Catagories. Version: 1.0 Author: Software Web Design Author URI: http://softwarewebdesign.com License: GPL2 */ // WP_Widget_Language_Catagory to WP_Widget_Language_Catagory class dbase{ var $num=0; var $id=0; var $fieldname=""; var $data; var $insertoption=""; var $quickarray=true; function multipleRecs($value){ if($value==true)$value=false; else $value=true; $this->quickarray=$value;return true; } function tableOption($query){ $q = mysql_query($query); $num_fields = mysql_num_fields($q); for($ii = 0; $ii < $num_fields; $ii++) { //$result.= mysql_field_name($query,$ii)."-".mysql_field_type($query,$ii)."(".mysql_field_len($query,$ii).")".mysql_field_flags($query,$ii)."\n"; $fieldinfo=mysql_field_flags($q,$ii); if(strpos($fieldinfo,"rimary_key")>0){ $this->fieldname=mysql_field_name($q,$ii);break; } } } function dbsql2($query){ $this->insertoption=$query; } function dbsql($query){ global $db; global $dc;global $debug; if($debug!=true)$result=mysql_query($query); else $result=mysql_query($query) or die(mysql_error().' from '.$query); if(!$result){ if($debug==true){ echo "Error:".$query;exit; }else{ echo "Error:".substr($query,0,10);exit;} } $sql= strtolower($query); if(strpos($sql,"nsert into")==1)$AC=1; if(strpos($sql,"elect")==1){ $AC=2;$this->num=mysql_numrows($result); } if(strpos($sql,"pdate")==1 || strpos($sql,"elete")==1)$AC=3; switch($AC){ case 1: $this->id=mysql_insert_id(); break; case 2: if($this->num==0 && $this->insertoption!=""){ $this->dbq($this->insertoption); return false; } if($this->num==0) return false; if($this->num==1 && $this->quickarray==true)$this->data=mysql_fetch_array($result); else $this->data=$result; break; case 3: break; } // end switch } } // end class class WP_Widget_Language_Catagory extends WP_Widget { // The widget construct. This creates title and description on wordpress admin widget page function WP_Widget_Language_Catagory() { $widget_ops = array( 'classname' => 'widget_LanguageCatagory', 'description' => __( "Language Catagory List for picking search topic" ) ); $this->WP_Widget('LanguageCatagory', __('sw - Language Catagory'), $widget_ops); } // End function WP_Widget_Language_Catagory // This code displays the widget on the screen. function widget($args, $instance) { extract($args); echo $before_widget; if(!empty($instance['title'])) { echo $before_title . $instance['title'] . $after_title; } $q=new dbase(); $sql="SELECT * FROM language ORDER BY language"; $q->multipleRecs(true); $q->dbsql($sql);$result=$q->data; echo"\n"; for($i=1;$i<=$q->num;$i++){ $r=mysql_fetch_array($result); //echo "".$r[1].""; echo "".$r[1].""; } echo"\n"; echo $after_widget; } // End function widget. } // end class WP_Widget_BareBones // Register the widget. add_action('widgets_init', create_function('', 'return register_widget("WP_Widget_Language_Catagory");')); ?> WP 1403 09/09/2023 WP Variables Wordpress Constants wordpress constants directories variables get_site_url() get_theme_root_uri(), get_stylesheet(), get_stylesheet_uri(), get_stylesheet_directory(), get_stylesheet_directory_uri(), get_bloginfo() WordPress Directories: home_url() Home URL http://www.example.com site_url() Site directory URL http://www.example.com or http://www.example.com/wordpress admin_url() Admin directory URL http://www.example.com/wp-admin includes_url() Includes directory URL http://www.example.com/wp-includes content_url() Content directory URL http://www.example.com/wp-content plugins_url() Plugins directory URL http://www.example.com/wp-content/plugins theme_url() Themes directory URL (#18302) http://www.example.com/wp-content/themes wp_upload_dir() Upload directory URL (returns an array) http://www.example.com/wp-content/uploads Categories: WordPress Constants Here are some of the constants and how they are used. There are probably a few that I missed. I’ll add to this as I find more. Security Constants These constants are declared in wp-config.php and are required for the normal operation of WordPress. All of these constants are 64 character random strings and are used for hashes, nonces and other security purposes. Each installation of WordPress should use different strings to ensure that your site is harder to “hack.” If you haven’t already changed your security keys, you can use WordPress’s online security key generator. AUTH_KEY — Used for authenticating a user and setting cookies. SECURE_AUTH_KEY — Used for authenticating a user and setting cookies under the https protocol. LOGGED_IN_KEY — Used for marking a user’s cookie data as logged in. NONCE_KEY — Used for creating Nonces, which are used as one-time values to ensure that humans are entering data in forms. AUTH_SALT — Used to “salt” the authentication data. Salts are random data added to passwords, keys and other data to make them harder to guess. SECURE_AUTH_SALT — Used to “salt” the secure authentication data. LOGGED_IN_SALT — Used to “salt” the logged in cookie data. NONCE_SALT — Used to “salt” the nonce data. Database Constants These are used to declare your database connection information. If you ever need to change your database password or location, you can effect this by editing your wp-config.php file and change these values: DB_NAME — The name of your database. DB_USER — The user name for your database connection. DB_PASSWORD — The password for your database connection. DB_HOST — The host name, or computer name where your database server is located. DB_CHARSET — The character set used when creating tables in your database. Unless you have a specific requirement for something else, this should have a value of ‘utf8?. DB_COLLATE — The collation (sorting) type to use for indexed data in your tables. This should be left empty unless you have a specific requirement otherwise. Other wp-config.php Constants These are the last few constants that are normally declared in wp-config.php: COOKIE_DOMAIN — Specifies the domain set in cookies for those with unusual domain configurations. This can help to prevent cookies being sent with requests for static content. Example: define(‘COOKIE_DOMAIN’, ‘www.staticdomain.com’);. WP_DEBUG — Sets WordPress’s “debug” mode on or off. Normally, this is set to false. Changing it to define(‘WP_DEBUG’, true); will turn on debug mode. This can be useful if you need to track down errors. WP_HOME — This overrides the configuration setting for the home url, but doesn’t change it permanently. This should include the http:// prefix, as in: define(‘WP_HOME’, ‘http://domain.com/optionalsubdirectory’);. WP_SITEURL — Declares the site’s URL. This defines the address where your WordPress code files reside. It should include the http:// prefix. An example would be: define(‘WP_SITEURL’, ‘http://mydomain.com’);. WPLANG — Used to localize your WordPress install. This should be left empty for a default language of American English. If you need to localize your WordPress installation, you need to change this and install a corresponding MO file for your language. For example, changing this to: define(‘WPLANG’, ‘de_DE’); will set your language to German. DISABLE_WP_CRON — Used to turn off WP Cron tasks that are initiated y a page load. When this is disabled, it is recommended to set up a separate Cron job to run the wp-cron.php script on a regular basis in order to still have cron-related operations run. System Constants These constants are set to describe the state of how WordPress handles various requests. APP_REQUEST — Set within wp-app.php to indicate that WordPress is handling an Atom Publishing Protocol request. Default Constants These values are declared in the wp-includes/default-constants.php file. You to change these settings, add them to your wp-config.php file so they are declared before the wp-includes/default-constants.php file is loaded. ADMIN_COOKIE_PATH — Sets the cookie path for admin-based cookies. If not already defined, this will take the value: define(‘ADMIN_COOKIE_PATH’, SITECOOKIEPATH . ‘wp-admin’); AUTH_COOKIE — Sets the authentication cookie name. If not already set, will be: define(‘AUTH_COOKIE’, ‘wordpress_’ . COOKIEHASH); COOKIEHASH — Defines an MD5 hash of the site’s domain name for use in user and password cookie names. COOKIEPATH — Defines the path name to be used in setting and retrieving cookies. If not already set, will be the domain name in which WordPress is installed. On MultiSite installs, will be the subdomain name, or the domain name including the directory of the Site. FORCE_SSL_ADMIN — Enforces the use of SSL for Admin access. Normally, this is disabled. To force SSL for all Admin pages, you can: define(‘FORCE_SSL_ADMIN’, true); FORCE_SSL_LOGIN — Enforces the use of SSL for site logins. Normally, this is disabled. To force SSL for login requests, you can: define(‘FORCE_SSL_LOGIN’, true); SITECOOKIEPATH — Sets the cookie path for normal site cookies. If not set, this will take the value define(‘SITECOOKIEPATH’, preg_replace(‘|https?://[^/]+|i’, ”, get_option(‘siteurl’) . ‘/’ ) ); WP_CONTENT_DIR — Sets the name of the content directory. Normally, this is ‘wp-content’. To change this, you can: define(‘WP_CONTENT_DIR’, ‘mycontentdirectory’); This can also be obtained by using plugin_dir_path() WP_CONTENT_URL — Sets the URL for the content directory references. if you change the WP_CONTENT_DIR, you will also need to change this to match the directory name for http requests. WP_DEBUG_DISPLAY — Controls display of errors. The default is to use the display_errors setting and not force errors to be displayed. To force errors to display, you can: define(‘WP_DEBUG_DISPLAY’, true); WP_DEBUG_LOG — Controls error logging to the file wp-content/debug.log. The default is no logging. To change this, you can: define(‘WP_DEBUG_LOG’, true); WP_DEFAULT_THEME — Sets the default theme. The current version of WordPress assumes a default theme of ‘twentyeleven’. If you want to change this, you can: define(‘WP_DEFAULT_THEME’, ‘mydefaulttheme’); WP_PLUGIN_DIR — Sets the directory for plugin files. The default is ‘plugins’. To change this, you can: define(‘WP_PLUGIN_DIR’, ‘/newplugindir’); WP_PLUGIN_URL — Sets the URL for the plugin directory. If you change the WP_PLUGIN_DIR, you will also need to change this to match the directory name for http requests. If you have compatibility issues with some plugins, you can set an additional value, as in: define(‘PLUGINDIR’, ‘/wpdir/wp-content/plugins’);. WPMU_PLUGIN_DIR — Sets the directory to store the Must Use plugins. The default location is /mu-plugins. To change this, you can: define(‘WPMU_PLUGIN_DIR’, ‘/requiredplugins’); WPMU_PLUGIN_URL — Sets the URL for the Must Use plugin directory. If you change the WPMU_PLUGIN_DIR, you will also need to change this to match the directory name for http requests. Capability Settings These can be used to control certain behaviors that users are allowed to perform. Some of these are confusing because you are turning “on” the ability to “disallow” a feature. So be careful on how you’re declaring these values. Most of these are used in the wp-includes/capabilities.php file, but if you want to change the settings, you should add your settings to your wp-config.php file. ALLOW_UNFILTERED_UPLOADS — Allows unfiltered uploads. You can: define(‘ALLOW_UNFILTERED_UPLOADS’, true); to enable users to upload files without filtering. Be careful: this is a potential security risk. DISALLOW_FILE_EDIT — Allows users to edit theme and plugin files. If you do not want your users to be able to edit these files, you can change this: define(‘DISALLOW_FILE_EDIT’, true); DISALLOW_FILE_MODS — Allows users to update theme and plugin files via the WordPress Repository. If you do not want your users to be able to update their WordPress install, you can change this: define(‘DISALLOW_FILE_MODS’, true); DISALLOW_UNFILTERED_HTML — Disables the ability to allow unfiltered HTML. Using define(‘DISALLOW_UNFILTERED_HTML’, false); will turn off the ability to allow unfiltered HTML. WP_CACHE — Enables the built-in WordPress caching capability. If you want to enable this caching, you can: define(‘WP_CACHE’, true); WP_USE_THEMES — Declared in /index.php. Tells WordPress whether or not use load it’s template engine. If you want access to WordPress APIs but don’t want or need the overhead of the template engine, define this to false: define(‘WP_USE_THEMES’, false); Script Control These settings control how scripts (Javascript and CSS) are handled by the system. COMPRESS_CSS — Compresses CSS. To enable CSS compression, you can: define(‘COMPRESS_CSS’, true); COMPRESS_SCRIPTS — Compresses scripts. To enable compression, you can: define(‘COMPRESS_SCRIPTS’, true); CONCATENATE_SCRIPTS — Concatenates Javascript and CSS files. To enable, you can define(‘CONCATENATE_SCRIPTS’, true); ENFORCE_GZIP — Forces gzip for compressoin of data sent to browsers. The default setting is to use the mod_deflate Apache module. If your host does not have this installed, you can: SCRIPT_DEBUG — Include the development (or non-minified) versions of all Javascript and CSS files. It also disabled compression and concatenation. To enable, you can: define(‘SCRIPT_DEBUG’, true); Optimization Settings These values can be used to control and optimize your WordPress install. AUTOSAVE_INTERVAL — Sets the interval for saving revisions while editing posts. CORE_UPGRADE_SKIP_NEW_BUNDLED — Enables skipping of theme and plugin updates when upgrading WordPress. DOING_AJAX — Set to TRUE when processing an AJAX request. EMPTY_TRASH_DAYS — Sets the number of days before trashed items are removed. IMAGE_EDIT_OVERWRITE — Allows overwriting images when editing them. MEDIA_TRASH — Enables the trash function for Media files. WP_MEMORY_LIMIT — Sets the memory limit used. WP_MAX_MEMORY_LIMIT — Controls the maximum memory size used. Some WordPress processes require more memory. This setting controls the upper limit used by these high memory use procedures. SHORTINIT — Turns on only the core WordPress functions. Often used when interfacing to other platforms. WP_POST_REVISIONS — Sets the maximum number of revisions to save. If set to FALSE it will be unlimited, an integer set the maximum number of revisions to save. MultiSite Settings These values control how WordPress MultiSite behaves. NOBLOGREDIRECT — Sets the URL to redirect visitors to when they request a non-existent MultiSite blog. The default is ‘%siteurl%’, which is the default site. If you wish to use a different location, you can: define(‘NOBLOGREDIRECT’, ‘mynewdomain.com’); WP_ALLOW_MULTISITE — Turns on MultiSite. Just enabling this using define(‘WP_ALLOW_MULTISITE’, true); does not by itself make your WordPress install a MultiSite install. It just starts the process. When you add this to your wp-config.php file, it turns on the Network menu in the Admin. This allows you to make certain choices and continue the setup process for your MultiSite install. WPMU_ACCEL_REDIRECT — When using Apache X-Sendfile for quicker loading, this helps you turn it on natively in WordPress for MultiSites. To enable, you can: define(‘WPMU_ACCEL_REDIRECT’, true); ABSPATH Definitions: 5 References: 597 ADMIN_COOKIE_PATH Definitions: 3 References: 8 AKISMET_DELETE_LIMIT Definitions: 1 References: 3 AKISMET_VERSION Definitions: 1 References: 8 AKISMET__MINIMUM_WP_VERSION Definitions: 1 References: 3 AKISMET__PLUGIN_DIR Definitions: 1 References: 7 AKISMET__PLUGIN_URL Definitions: 1 References: 5 ARRAY_A Definitions: 1 References: 71 ARRAY_N Definitions: 1 References: 16 ATOM Definitions: 1 References: 10 AUTH_COOKIE Definitions: 1 References: 12 AUTH_KEY Definitions: 1 References: 4 AUTH_SALT Definitions: 1 References: 3 AUTOSAVE_INTERVAL Definitions: 1 References: 3 BACKGROUND_COLOR Definitions: 1 References: 3 BACKGROUND_IMAGE Definitions: 1 References: 3 BLOGUPLOADDIR Definitions: 1 References: 5 BLOG_ID_CURRENT_SITE Definitions: 1 References: 3 COMMENTS_TEMPLATE Definitions: 1 References: 2 COOKIEHASH Definitions: 2 References: 29 COOKIEPATH Definitions: 2 References: 17 COOKIE_DOMAIN Definitions: 3 References: 28 CRLF Definitions: 1 References: 37 CUSTOM_TAGS Definitions: 1 References: 3 DAY_IN_SECONDS Definitions: 1 References: 33 DB_CHARSET Definitions: 1 References: 3 DB_COLLATE Definitions: 1 References: 6 DB_HOST Definitions: 2 References: 4 DB_NAME Definitions: 2 References: 5 DB_PASSWORD Definitions: 2 References: 4 DB_USER Definitions: 2 References: 4 DOING_AJAX Definitions: 2 References: 34 DOING_AUTOSAVE Definitions: 1 References: 4 DOING_CRON Definitions: 1 References: 24 DOMAIN_CURRENT_SITE Definitions: 1 References: 3 EBML_ID_ASPECTRATIOTYPE Definitions: 1 References: 3 EBML_ID_ATTACHEDFILE Definitions: 1 References: 3 EBML_ID_ATTACHMENTLINK Definitions: 1 References: 2 EBML_ID_ATTACHMENTS Definitions: 1 References: 3 EBML_ID_AUDIO Definitions: 1 References: 4 EBML_ID_BITDEPTH Definitions: 1 References: 3 EBML_ID_CHANNELPOSITIONS Definitions: 1 References: 3 EBML_ID_CHANNELS Definitions: 1 References: 3 EBML_ID_CHAPCOUNTRY Definitions: 1 References: 3 EBML_ID_CHAPLANGUAGE Definitions: 1 References: 3 EBML_ID_CHAPPROCESS Definitions: 1 References: 2 EBML_ID_CHAPPROCESSCODECID Definitions: 1 References: 2 EBML_ID_CHAPPROCESSCOMMAND Definitions: 1 References: 2 EBML_ID_CHAPPROCESSDATA Definitions: 1 References: 2 EBML_ID_CHAPPROCESSPRIVATE Definitions: 1 References: 2 EBML_ID_CHAPPROCESSTIME Definitions: 1 References: 2 EBML_ID_CHAPSTRING Definitions: 1 References: 3 EBML_ID_CHAPTERATOM Definitions: 1 References: 4 EBML_ID_CHAPTERDISPLAY Definitions: 1 References: 4 EBML_ID_CHAPTERFLAGENABLED Definitions: 1 References: 3 EBML_ID_CHAPTERFLAGHIDDEN Definitions: 1 References: 3 EBML_ID_CHAPTERPHYSICALEQUIV Definitions: 1 References: 2 EBML_ID_CHAPTERS Definitions: 1 References: 3 EBML_ID_CHAPTERSEGMENTEDITIONUID Definitions: 1 References: 3 EBML_ID_CHAPTERSEGMENTUID Definitions: 1 References: 3 EBML_ID_CHAPTERTIMEEND Definitions: 1 References: 3 EBML_ID_CHAPTERTIMESTART Definitions: 1 References: 3 EBML_ID_CHAPTERTRACK Definitions: 1 References: 4 EBML_ID_CHAPTERTRACKNUMBER Definitions: 1 References: 3 EBML_ID_CHAPTERTRANSLATE Definitions: 1 References: 3 EBML_ID_CHAPTERTRANSLATECODEC Definitions: 1 References: 3 EBML_ID_CHAPTERTRANSLATEEDITIONUID Definitions: 1 References: 3 EBML_ID_CHAPTERTRANSLATEID Definitions: 1 References: 3 EBML_ID_CHAPTERUID Definitions: 1 References: 3 EBML_ID_CLUSTER Definitions: 1 References: 5 EBML_ID_CLUSTERBLOCK Definitions: 1 References: 5 EBML_ID_CLUSTERBLOCKADDID Definitions: 1 References: 2 EBML_ID_CLUSTERBLOCKADDITIONAL Definitions: 1 References: 2 EBML_ID_CLUSTERBLOCKADDITIONID Definitions: 1 References: 2 EBML_ID_CLUSTERBLOCKADDITIONS Definitions: 1 References: 2 EBML_ID_CLUSTERBLOCKDURATION Definitions: 1 References: 3 EBML_ID_CLUSTERBLOCKGROUP Definitions: 1 References: 4 EBML_ID_CLUSTERBLOCKMORE Definitions: 1 References: 2 EBML_ID_CLUSTERBLOCKVIRTUAL Definitions: 1 References: 2 EBML_ID_CLUSTERCODECSTATE Definitions: 1 References: 3 EBML_ID_CLUSTERDELAY Definitions: 1 References: 2 EBML_ID_CLUSTERDURATION Definitions: 1 References: 2 EBML_ID_CLUSTERENCRYPTEDBLOCK Definitions: 1 References: 2 EBML_ID_CLUSTERFRAMENUMBER Definitions: 1 References: 2 EBML_ID_CLUSTERLACENUMBER Definitions: 1 References: 2 EBML_ID_CLUSTERPOSITION Definitions: 1 References: 3 EBML_ID_CLUSTERPREVSIZE Definitions: 1 References: 3 EBML_ID_CLUSTERREFERENCEBLOCK Definitions: 1 References: 3 EBML_ID_CLUSTERREFERENCEPRIORITY Definitions: 1 References: 3 EBML_ID_CLUSTERREFERENCEVIRTUAL Definitions: 1 References: 2 EBML_ID_CLUSTERSILENTTRACKNUMBER Definitions: 1 References: 3 EBML_ID_CLUSTERSILENTTRACKS Definitions: 1 References: 4 EBML_ID_CLUSTERSIMPLEBLOCK Definitions: 1 References: 7 EBML_ID_CLUSTERSLICES Definitions: 1 References: 2 EBML_ID_CLUSTERTIMECODE Definitions: 1 References: 3 EBML_ID_CLUSTERTIMESLICE Definitions: 1 References: 2 EBML_ID_CODECDECODEALL Definitions: 1 References: 3 EBML_ID_CODECDOWNLOADURL Definitions: 1 References: 2 EBML_ID_CODECID Definitions: 1 References: 3 EBML_ID_CODECINFOURL Definitions: 1 References: 2 EBML_ID_CODECNAME Definitions: 1 References: 3 EBML_ID_CODECPRIVATE Definitions: 1 References: 4 EBML_ID_CODECSETTINGS Definitions: 1 References: 2 EBML_ID_COLOURSPACE Definitions: 1 References: 3 EBML_ID_CONTENTCOMPALGO Definitions: 1 References: 3 EBML_ID_CONTENTCOMPRESSION Definitions: 1 References: 4 EBML_ID_CONTENTCOMPSETTINGS Definitions: 1 References: 3 EBML_ID_CONTENTENCALGO Definitions: 1 References: 3 EBML_ID_CONTENTENCKEYID Definitions: 1 References: 3 EBML_ID_CONTENTENCODING Definitions: 1 References: 3 EBML_ID_CONTENTENCODINGORDER Definitions: 1 References: 3 EBML_ID_CONTENTENCODINGS Definitions: 1 References: 4 EBML_ID_CONTENTENCODINGSCOPE Definitions: 1 References: 3 EBML_ID_CONTENTENCODINGTYPE Definitions: 1 References: 3 EBML_ID_CONTENTENCRYPTION Definitions: 1 References: 4 EBML_ID_CONTENTSIGALGO Definitions: 1 References: 3 EBML_ID_CONTENTSIGHASHALGO Definitions: 1 References: 3 EBML_ID_CONTENTSIGKEYID Definitions: 1 References: 3 EBML_ID_CONTENTSIGNATURE Definitions: 1 References: 3 EBML_ID_CRC32 Definitions: 1 References: 3 EBML_ID_CUEBLOCKNUMBER Definitions: 1 References: 3 EBML_ID_CUECLUSTERPOSITION Definitions: 1 References: 3 EBML_ID_CUECODECSTATE Definitions: 1 References: 3 EBML_ID_CUEPOINT Definitions: 1 References: 3 EBML_ID_CUEREFCLUSTER Definitions: 1 References: 2 EBML_ID_CUEREFCODECSTATE Definitions: 1 References: 2 EBML_ID_CUEREFERENCE Definitions: 1 References: 2 EBML_ID_CUEREFNUMBER Definitions: 1 References: 2 EBML_ID_CUEREFTIME Definitions: 1 References: 2 EBML_ID_CUES Definitions: 1 References: 3 EBML_ID_CUETIME Definitions: 1 References: 3 EBML_ID_CUETRACK Definitions: 1 References: 3 EBML_ID_CUETRACKPOSITIONS Definitions: 1 References: 4 EBML_ID_DATEUTC Definitions: 1 References: 3 EBML_ID_DEFAULTDURATION Definitions: 1 References: 3 EBML_ID_DISPLAYHEIGHT Definitions: 1 References: 3 EBML_ID_DISPLAYUNIT Definitions: 1 References: 3 EBML_ID_DISPLAYWIDTH Definitions: 1 References: 3 EBML_ID_DOCTYPE Definitions: 1 References: 3 EBML_ID_DOCTYPEREADVERSION Definitions: 1 References: 3 EBML_ID_DOCTYPEVERSION Definitions: 1 References: 3 EBML_ID_DURATION Definitions: 1 References: 3 EBML_ID_EBML Definitions: 1 References: 3 EBML_ID_EBMLMAXIDLENGTH Definitions: 1 References: 3 EBML_ID_EBMLMAXSIZELENGTH Definitions: 1 References: 3 EBML_ID_EBMLREADVERSION Definitions: 1 References: 3 EBML_ID_EBMLVERSION Definitions: 1 References: 3 EBML_ID_EDITIONENTRY Definitions: 1 References: 3 EBML_ID_EDITIONFLAGDEFAULT Definitions: 1 References: 3 EBML_ID_EDITIONFLAGHIDDEN Definitions: 1 References: 3 EBML_ID_EDITIONFLAGORDERED Definitions: 1 References: 3 EBML_ID_EDITIONUID Definitions: 1 References: 3 EBML_ID_FILEDATA Definitions: 1 References: 4 EBML_ID_FILEDESCRIPTION Definitions: 1 References: 3 EBML_ID_FILEMIMETYPE Definitions: 1 References: 3 EBML_ID_FILENAME Definitions: 1 References: 3 EBML_ID_FILEREFERRAL Definitions: 1 References: 2 EBML_ID_FILEUID Definitions: 1 References: 3 EBML_ID_FLAGDEFAULT Definitions: 1 References: 3 EBML_ID_FLAGENABLED Definitions: 1 References: 3 EBML_ID_FLAGFORCED Definitions: 1 References: 3 EBML_ID_FLAGINTERLACED Definitions: 1 References: 3 EBML_ID_FLAGLACING Definitions: 1 References: 3 EBML_ID_GAMMAVALUE Definitions: 1 References: 3 EBML_ID_INFO Definitions: 1 References: 3 EBML_ID_LANGUAGE Definitions: 1 References: 3 EBML_ID_MAXBLOCKADDITIONID Definitions: 1 References: 3 EBML_ID_MAXCACHE Definitions: 1 References: 3 EBML_ID_MINCACHE Definitions: 1 References: 3 EBML_ID_MUXINGAPP Definitions: 1 References: 3 EBML_ID_NAME Definitions: 1 References: 3 EBML_ID_NEXTFILENAME Definitions: 1 References: 3 EBML_ID_NEXTUID Definitions: 1 References: 3 EBML_ID_OLDSTEREOMODE Definitions: 1 References: 3 EBML_ID_OUTPUTSAMPLINGFREQUENCY Definitions: 1 References: 3 EBML_ID_PIXELCROPBOTTOM Definitions: 1 References: 3 EBML_ID_PIXELCROPLEFT Definitions: 1 References: 3 EBML_ID_PIXELCROPRIGHT Definitions: 1 References: 3 EBML_ID_PIXELCROPTOP Definitions: 1 References: 3 EBML_ID_PIXELHEIGHT Definitions: 1 References: 3 EBML_ID_PIXELWIDTH Definitions: 1 References: 3 EBML_ID_PREVFILENAME Definitions: 1 References: 3 EBML_ID_PREVUID Definitions: 1 References: 3 EBML_ID_SAMPLINGFREQUENCY Definitions: 1 References: 3 EBML_ID_SEEK Definitions: 1 References: 3 EBML_ID_SEEKHEAD Definitions: 1 References: 3 EBML_ID_SEEKID Definitions: 1 References: 3 EBML_ID_SEEKPOSITION Definitions: 1 References: 3 EBML_ID_SEGMENT Definitions: 1 References: 3 EBML_ID_SEGMENTFAMILY Definitions: 1 References: 3 EBML_ID_SEGMENTFILENAME Definitions: 1 References: 3 EBML_ID_SEGMENTUID Definitions: 1 References: 3 EBML_ID_SIMPLETAG Definitions: 1 References: 5 EBML_ID_STEREOMODE Definitions: 1 References: 3 EBML_ID_TAG Definitions: 1 References: 3 EBML_ID_TAGATTACHMENTUID Definitions: 1 References: 3 EBML_ID_TAGBINARY Definitions: 1 References: 3 EBML_ID_TAGCHAPTERUID Definitions: 1 References: 3 EBML_ID_TAGDEFAULT Definitions: 1 References: 3 EBML_ID_TAGEDITIONUID Definitions: 1 References: 3 EBML_ID_TAGLANGUAGE Definitions: 1 References: 3 EBML_ID_TAGNAME Definitions: 1 References: 3 EBML_ID_TAGS Definitions: 1 References: 3 EBML_ID_TAGSTRING Definitions: 1 References: 3 EBML_ID_TAGTRACKUID Definitions: 1 References: 3 EBML_ID_TARGETS Definitions: 1 References: 3 EBML_ID_TARGETTYPE Definitions: 1 References: 3 EBML_ID_TARGETTYPEVALUE Definitions: 1 References: 3 EBML_ID_TIMECODESCALE Definitions: 1 References: 3 EBML_ID_TITLE Definitions: 1 References: 3 EBML_ID_TRACKENTRY Definitions: 1 References: 3 EBML_ID_TRACKNUMBER Definitions: 1 References: 3 EBML_ID_TRACKOFFSET Definitions: 1 References: 2 EBML_ID_TRACKOVERLAY Definitions: 1 References: 2 EBML_ID_TRACKS Definitions: 1 References: 3 EBML_ID_TRACKTIMECODESCALE Definitions: 1 References: 3 EBML_ID_TRACKTRANSLATE Definitions: 1 References: 2 EBML_ID_TRACKTRANSLATECODEC Definitions: 1 References: 2 EBML_ID_TRACKTRANSLATEEDITIONUID Definitions: 1 References: 2 EBML_ID_TRACKTRANSLATETRACKID Definitions: 1 References: 2 EBML_ID_TRACKTYPE Definitions: 1 References: 3 EBML_ID_TRACKUID Definitions: 1 References: 3 EBML_ID_VIDEO Definitions: 1 References: 4 EBML_ID_VOID Definitions: 1 References: 3 EBML_ID_WRITINGAPP Definitions: 1 References: 3 EMPTY_TRASH_DAYS Definitions: 1 References: 28 EP_ALL Definitions: 1 References: 1 EP_ALL_ARCHIVES Definitions: 1 References: 2 EP_ATTACHMENT Definitions: 1 References: 3 EP_AUTHORS Definitions: 1 References: 3 EP_CATEGORIES Definitions: 1 References: 3 EP_COMMENTS Definitions: 1 References: 3 EP_DATE Definitions: 1 References: 3 EP_DAY Definitions: 1 References: 3 EP_MONTH Definitions: 1 References: 3 EP_NONE Definitions: 1 References: 6 EP_PAGES Definitions: 1 References: 4 EP_PERMALINK Definitions: 1 References: 5 EP_ROOT Definitions: 1 References: 4 EP_SEARCH Definitions: 1 References: 3 EP_TAGS Definitions: 1 References: 3 EP_YEAR Definitions: 1 References: 3 EZSQL_VERSION Definitions: 1 References: 1 FORCE_SSL_ADMIN Definitions: 1 References: 3 FORCE_SSL_LOGIN Definitions: 1 References: 3 FS_CHMOD_DIR Definitions: 1 References: 17 FS_CHMOD_FILE Definitions: 1 References: 21 FS_CONNECT_TIMEOUT Definitions: 1 References: 5 FS_TIMEOUT Definitions: 2 References: 8 FTP_ASCII Definitions: 1 References: 21 FTP_AUTOASCII Definitions: 1 References: 9 FTP_BINARY Definitions: 1 References: 19 FTP_FORCE Definitions: 1 References: 3 GETID3_FLV_TAG_AUDIO Definitions: 1 References: 2 GETID3_FLV_TAG_META Definitions: 1 References: 2 GETID3_FLV_TAG_VIDEO Definitions: 1 References: 2 GETID3_FLV_VIDEO_H263 Definitions: 1 References: 3 GETID3_FLV_VIDEO_H264 Definitions: 1 References: 3 GETID3_FLV_VIDEO_SCREEN Definitions: 1 References: 2 GETID3_FLV_VIDEO_SCREENV2 Definitions: 1 References: 2 GETID3_FLV_VIDEO_VP6FLV Definitions: 1 References: 2 GETID3_FLV_VIDEO_VP6FLV_ALPHA Definitions: 1 References: 2 GETID3_HELPERAPPSDIR Definitions: 1 References: 11 GETID3_INCLUDEPATH Definitions: 1 References: 24 GETID3_MP3_VALID_CHECK_FRAMES Definitions: 1 References: 4 GETID3_OS_ISWINDOWS Definitions: 1 References: 7 GETID3_TEMP_DIR Definitions: 1 References: 6 H264_AVC_SEQUENCE_HEADER Definitions: 1 References: 2 H264_PROFILE_BASELINE Definitions: 1 References: 1 H264_PROFILE_EXTENDED Definitions: 1 References: 1 H264_PROFILE_HIGH Definitions: 1 References: 2 H264_PROFILE_HIGH10 Definitions: 1 References: 2 H264_PROFILE_HIGH422 Definitions: 1 References: 2 H264_PROFILE_HIGH444 Definitions: 1 References: 2 H264_PROFILE_HIGH444_PREDICTIVE Definitions: 1 References: 2 H264_PROFILE_MAIN Definitions: 1 References: 1 HEADER_IMAGE Definitions: 3 References: 5 HEADER_IMAGE_HEIGHT Definitions: 3 References: 7 HEADER_IMAGE_WIDTH Definitions: 3 References: 10 HEADER_TEXTCOLOR Definitions: 3 References: 7 HOUR_IN_SECONDS Definitions: 1 References: 45 IFRAME_REQUEST Definitions: 8 References: 12 IS_PROFILE_PAGE Definitions: 2 References: 24 LANGDIR Definitions: 2 References: 4 LOGGED_IN_COOKIE Definitions: 1 References: 12 LOGGED_IN_KEY Definitions: 1 References: 3 LOGGED_IN_SALT Definitions: 1 References: 3 MAGPIE_CACHE_AGE Definitions: 1 References: 3 MAGPIE_CACHE_DIR Definitions: 1 References: 3 MAGPIE_CACHE_FRESH_ONLY Definitions: 1 References: 2 MAGPIE_CACHE_ON Definitions: 1 References: 4 MAGPIE_DEBUG Definitions: 1 References: 10 MAGPIE_FETCH_TIME_OUT Definitions: 1 References: 3 MAGPIE_INITALIZED Definitions: 1 References: 2 MAGPIE_USER_AGENT Definitions: 2 References: 3 MAGPIE_USE_GZIP Definitions: 1 References: 2 MEDIA_TRASH Definitions: 1 References: 13 MINUTE_IN_SECONDS Definitions: 1 References: 9 MULTISITE Definitions: 2 References: 12 MUPLUGINDIR Definitions: 1 References: 2 NONCE_KEY Definitions: 1 References: 3 NONCE_SALT Definitions: 1 References: 3 NO_HEADER_TEXT Definitions: 2 References: 4 OBJECT Definitions: 1 References: 44 OBJECT_K Definitions: 1 References: 4 PASS_COOKIE Definitions: 1 References: 4 PATH_CURRENT_SITE Definitions: 1 References: 3 PCLZIP_ATT_FILE_COMMENT Definitions: 1 References: 4 PCLZIP_ATT_FILE_CONTENT Definitions: 1 References: 4 PCLZIP_ATT_FILE_MTIME Definitions: 1 References: 4 PCLZIP_ATT_FILE_NAME Definitions: 1 References: 6 PCLZIP_ATT_FILE_NEW_FULL_NAME Definitions: 1 References: 4 PCLZIP_ATT_FILE_NEW_SHORT_NAME Definitions: 1 References: 4 PCLZIP_CB_POST_ADD Definitions: 1 References: 7 PCLZIP_CB_POST_DELETE Definitions: 1 References: 2 PCLZIP_CB_POST_EXTRACT Definitions: 1 References: 13 PCLZIP_CB_POST_LIST Definitions: 1 References: 2 PCLZIP_CB_PRE_ADD Definitions: 1 References: 7 PCLZIP_CB_PRE_DELETE Definitions: 1 References: 2 PCLZIP_CB_PRE_EXTRACT Definitions: 1 References: 13 PCLZIP_CB_PRE_LIST Definitions: 1 References: 2 PCLZIP_ERROR_EXTERNAL Definitions: 1 References: 6 PCLZIP_ERR_ALREADY_A_DIRECTORY Definitions: 1 References: 2 PCLZIP_ERR_BAD_CHECKSUM Definitions: 1 References: 3 PCLZIP_ERR_BAD_EXTENSION Definitions: 1 References: 3 PCLZIP_ERR_BAD_EXTRACTED_FILE Definitions: 1 References: 3 PCLZIP_ERR_BAD_FORMAT Definitions: 1 References: 14 PCLZIP_ERR_DELETE_FILE_FAIL Definitions: 1 References: 3 PCLZIP_ERR_DIRECTORY_RESTRICTION Definitions: 1 References: 4 PCLZIP_ERR_DIR_CREATE_FAIL Definitions: 1 References: 4 PCLZIP_ERR_FILENAME_TOO_LONG Definitions: 1 References: 3 PCLZIP_ERR_INVALID_ARCHIVE_ZIP Definitions: 1 References: 8 PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE Definitions: 1 References: 11 PCLZIP_ERR_INVALID_OPTION_VALUE Definitions: 1 References: 11 PCLZIP_ERR_INVALID_PARAMETER Definitions: 1 References: 24 PCLZIP_ERR_INVALID_ZIP Definitions: 1 References: 3 PCLZIP_ERR_MISSING_FILE Definitions: 1 References: 8 PCLZIP_ERR_MISSING_OPTION_VALUE Definitions: 1 References: 12 PCLZIP_ERR_NO_ERROR Definitions: 1 References: 6 PCLZIP_ERR_READ_OPEN_FAIL Definitions: 1 References: 16 PCLZIP_ERR_RENAME_FILE_FAIL Definitions: 1 References: 3 PCLZIP_ERR_UNSUPPORTED_COMPRESSION Definitions: 1 References: 4 PCLZIP_ERR_UNSUPPORTED_ENCRYPTION Definitions: 1 References: 5 PCLZIP_ERR_USER_ABORTED Definitions: 1 References: 7 PCLZIP_ERR_WRITE_OPEN_FAIL Definitions: 1 References: 7 PCLZIP_OPT_ADD_COMMENT Definitions: 1 References: 5 PCLZIP_OPT_ADD_PATH Definitions: 1 References: 14 PCLZIP_OPT_ADD_TEMP_FILE_OFF Definitions: 1 References: 1 PCLZIP_OPT_ADD_TEMP_FILE_ON Definitions: 1 References: 1 PCLZIP_OPT_ADD_TEMP_FILE_THRESHOLD Definitions: 1 References: 1 PCLZIP_OPT_BY_EREG Definitions: 1 References: 4 PCLZIP_OPT_BY_INDEX Definitions: 1 References: 23 PCLZIP_OPT_BY_NAME Definitions: 1 References: 21 PCLZIP_OPT_BY_PREG Definitions: 1 References: 11 PCLZIP_OPT_COMMENT Definitions: 1 References: 10 PCLZIP_OPT_EXTRACT_AS_STRING Definitions: 1 References: 10 PCLZIP_OPT_EXTRACT_DIR_RESTRICTION Definitions: 1 References: 7 PCLZIP_OPT_EXTRACT_IN_OUTPUT Definitions: 1 References: 5 PCLZIP_OPT_NO_COMPRESSION Definitions: 1 References: 8 PCLZIP_OPT_PATH Definitions: 1 References: 8 PCLZIP_OPT_PREPEND_COMMENT Definitions: 1 References: 5 PCLZIP_OPT_REMOVE_ALL_PATH Definitions: 1 References: 15 PCLZIP_OPT_REMOVE_PATH Definitions: 1 References: 14 PCLZIP_OPT_REPLACE_NEWER Definitions: 1 References: 7 PCLZIP_OPT_SET_CHMOD Definitions: 1 References: 6 PCLZIP_OPT_STOP_ON_ERROR Definitions: 1 References: 14 PCLZIP_OPT_TEMP_FILE_OFF Definitions: 1 References: 13 PCLZIP_OPT_TEMP_FILE_ON Definitions: 1 References: 10 PCLZIP_OPT_TEMP_FILE_THRESHOLD Definitions: 1 References: 17 PCLZIP_READ_BLOCK_SIZE Definitions: 1 References: 34 PCLZIP_SEPARATOR Definitions: 1 References: 4 PCLZIP_TEMPORARY_DIR Definitions: 1 References: 7 PCLZIP_TEMPORARY_FILE_RATIO Definitions: 1 References: 3 PHP_INT_MIN Definitions: 1 References: 3 PLUGINDIR Definitions: 1 References: 2 PLUGINS_COOKIE_PATH Definitions: 1 References: 5 PO_MAX_LINE_LEN Definitions: 1 References: 2 RSS Definitions: 1 References: 33 SCRIPT_DEBUG Definitions: 2 References: 14 SECURE_AUTH_COOKIE Definitions: 1 References: 12 SECURE_AUTH_KEY Definitions: 1 References: 3 SECURE_AUTH_SALT Definitions: 1 References: 3 SERVICES_JSON_IN_ARR Definitions: 1 References: 10 SERVICES_JSON_IN_CMT Definitions: 1 References: 3 SERVICES_JSON_IN_OBJ Definitions: 1 References: 10 SERVICES_JSON_IN_STR Definitions: 1 References: 4 SERVICES_JSON_LOOSE_TYPE Definitions: 1 References: 4 SERVICES_JSON_SLICE Definitions: 1 References: 7 SERVICES_JSON_SUPPRESS_ERRORS Definitions: 1 References: 3 SERVICES_JSON_USE_TO_JSON Definitions: 1 References: 2 SHORTINIT Definitions: 2 References: 4 SIMPLEPIE_BUILD Definitions: 1 References: 6 SIMPLEPIE_CONSTRUCT_ALL Definitions: 1 References: 1 SIMPLEPIE_CONSTRUCT_BASE64 Definitions: 1 References: 5 SIMPLEPIE_CONSTRUCT_HTML Definitions: 1 References: 18 SIMPLEPIE_CONSTRUCT_IRI Definitions: 1 References: 60 SIMPLEPIE_CONSTRUCT_MAYBE_HTML Definitions: 1 References: 18 SIMPLEPIE_CONSTRUCT_NONE Definitions: 1 References: 5 SIMPLEPIE_CONSTRUCT_TEXT Definitions: 1 References: 258 SIMPLEPIE_CONSTRUCT_XHTML Definitions: 1 References: 8 SIMPLEPIE_FILE_SOURCE_CURL Definitions: 1 References: 2 SIMPLEPIE_FILE_SOURCE_FILE_GET_CONTENTS Definitions: 1 References: 2 SIMPLEPIE_FILE_SOURCE_FSOCKOPEN Definitions: 1 References: 2 SIMPLEPIE_FILE_SOURCE_LOCAL Definitions: 1 References: 3 SIMPLEPIE_FILE_SOURCE_NONE Definitions: 1 References: 2 SIMPLEPIE_FILE_SOURCE_REMOTE Definitions: 1 References: 11 SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY Definitions: 1 References: 19 SIMPLEPIE_LINKBACK Definitions: 1 References: 1 SIMPLEPIE_LOCATOR_ALL Definitions: 1 References: 4 SIMPLEPIE_LOCATOR_AUTODISCOVERY Definitions: 1 References: 2 SIMPLEPIE_LOCATOR_LOCAL_BODY Definitions: 1 References: 3 SIMPLEPIE_LOCATOR_LOCAL_EXTENSION Definitions: 1 References: 3 SIMPLEPIE_LOCATOR_NONE Definitions: 1 References: 2 SIMPLEPIE_LOCATOR_REMOTE_BODY Definitions: 1 References: 3 SIMPLEPIE_LOCATOR_REMOTE_EXTENSION Definitions: 1 References: 3 SIMPLEPIE_LOWERCASE Definitions: 1 References: 1 SIMPLEPIE_NAME Definitions: 1 References: 5 SIMPLEPIE_NAMESPACE_ATOM_03 Definitions: 1 References: 79 SIMPLEPIE_NAMESPACE_ATOM_10 Definitions: 1 References: 89 SIMPLEPIE_NAMESPACE_DC_10 Definitions: 1 References: 21 SIMPLEPIE_NAMESPACE_DC_11 Definitions: 1 References: 21 SIMPLEPIE_NAMESPACE_GEORSS Definitions: 1 References: 7 SIMPLEPIE_NAMESPACE_ITUNES Definitions: 1 References: 24 SIMPLEPIE_NAMESPACE_MEDIARSS Definitions: 1 References: 116 SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG Definitions: 1 References: 2 SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG2 Definitions: 1 References: 2 SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG3 Definitions: 1 References: 2 SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG4 Definitions: 1 References: 2 SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG5 Definitions: 1 References: 2 SIMPLEPIE_NAMESPACE_RDF Definitions: 1 References: 20 SIMPLEPIE_NAMESPACE_RSS_090 Definitions: 1 References: 23 SIMPLEPIE_NAMESPACE_RSS_10 Definitions: 1 References: 23 SIMPLEPIE_NAMESPACE_RSS_20 Definitions: 1 References: 50 SIMPLEPIE_NAMESPACE_W3C_BASIC_GEO Definitions: 1 References: 10 SIMPLEPIE_NAMESPACE_XHTML Definitions: 1 References: 3 SIMPLEPIE_NAMESPACE_XML Definitions: 1 References: 5 SIMPLEPIE_PCRE_HTML_ATTRIBUTE Definitions: 1 References: 4 SIMPLEPIE_PCRE_XML_ATTRIBUTE Definitions: 1 References: 3 SIMPLEPIE_SAME_CASE Definitions: 1 References: 1 SIMPLEPIE_TYPE_ALL Definitions: 1 References: 2 SIMPLEPIE_TYPE_ATOM_03 Definitions: 1 References: 3 SIMPLEPIE_TYPE_ATOM_10 Definitions: 1 References: 3 SIMPLEPIE_TYPE_ATOM_ALL Definitions: 1 References: 2 SIMPLEPIE_TYPE_NONE Definitions: 1 References: 3 SIMPLEPIE_TYPE_RSS_090 Definitions: 1 References: 4 SIMPLEPIE_TYPE_RSS_091 Definitions: 1 References: 2 SIMPLEPIE_TYPE_RSS_091_NETSCAPE Definitions: 1 References: 2 SIMPLEPIE_TYPE_RSS_091_USERLAND Definitions: 1 References: 2 SIMPLEPIE_TYPE_RSS_092 Definitions: 1 References: 2 SIMPLEPIE_TYPE_RSS_093 Definitions: 1 References: 2 SIMPLEPIE_TYPE_RSS_094 Definitions: 1 References: 2 SIMPLEPIE_TYPE_RSS_10 Definitions: 1 References: 4 SIMPLEPIE_TYPE_RSS_20 Definitions: 1 References: 2 SIMPLEPIE_TYPE_RSS_ALL Definitions: 1 References: 2 SIMPLEPIE_TYPE_RSS_RDF Definitions: 1 References: 2 SIMPLEPIE_TYPE_RSS_SYNDICATION Definitions: 1 References: 7 SIMPLEPIE_UPPERCASE Definitions: 1 References: 1 SIMPLEPIE_URL Definitions: 1 References: 3 SIMPLEPIE_USERAGENT Definitions: 1 References: 4 SIMPLEPIE_VERSION Definitions: 1 References: 4 SITECOOKIEPATH Definitions: 2 References: 20 SITE_ID_CURRENT_SITE Definitions: 1 References: 3 STYLESHEETPATH Definitions: 1 References: 8 SUBDOMAIN_INSTALL Definitions: 3 References: 13 TEMPLATEPATH Definitions: 1 References: 9 TEST_COOKIE Definitions: 1 References: 5 UPLOADBLOGSDIR Definitions: 1 References: 5 UPLOADS Definitions: 1 References: 7 USER_COOKIE Definitions: 1 References: 4 VHOST Definitions: 2 References: 11 WEEK_IN_SECONDS Definitions: 1 References: 6 WPINC Definitions: 5 References: 204 WPLANG Definitions: 1 References: 22 WPMU_ACCEL_REDIRECT Definitions: 1 References: 3 WPMU_PLUGIN_DIR Definitions: 1 References: 20 WPMU_PLUGIN_URL Definitions: 1 References: 3 WPMU_SENDFILE Definitions: 1 References: 3 WP_ADMIN Definitions: 4 References: 10 WP_ALLOW_REPAIR Definitions: 2 References: 3 WP_BLOG_ADMIN Definitions: 1 References: 3 WP_CACHE Definitions: 1 References: 6 WP_CONTENT_DIR Definitions: 3 References: 95 WP_CONTENT_URL Definitions: 1 References: 10 WP_CRON_LOCK_TIMEOUT Definitions: 1 References: 4 WP_DEBUG Definitions: 3 References: 26 WP_DEBUG_DISPLAY Definitions: 1 References: 5 WP_DEBUG_LOG Definitions: 1 References: 5 WP_DEFAULT_THEME Definitions: 1 References: 19 WP_IMPORTING Definitions: 1 References: 7 WP_INSTALLING Definitions: 5 References: 37 WP_INSTALLING_NETWORK Definitions: 2 References: 9 WP_LANG_DIR Definitions: 2 References: 32 WP_LOAD_IMPORTERS Definitions: 2 References: 3 WP_MAIL_INTERVAL Definitions: 1 References: 3 WP_MAX_MEMORY_LIMIT Definitions: 1 References: 8 WP_MEMORY_LIMIT Definitions: 2 References: 7 WP_NETWORK_ADMIN Definitions: 2 References: 9 WP_PLUGIN_DIR Definitions: 1 References: 58 WP_PLUGIN_URL Definitions: 1 References: 4 WP_POST_REVISIONS Definitions: 1 References: 3 WP_REPAIRING Definitions: 1 References: 4 WP_SETUP_CONFIG Definitions: 1 References: 5 WP_UNINSTALL_PLUGIN Definitions: 1 References: 1 WP_USER_ADMIN Definitions: 2 References: 9 WP_USE_THEMES Definitions: 1 References: 6 WXR_VERSION Definitions: 1 References: 1 XMLRPC_REQUEST Definitions: 1 References: 8 YEAR_IN_SECONDS Definitions: 1 References: 21 WP 972 09/09/2023 WP Variables Rerserved Words reserved constant List of reserved names in $_POST and $_REQUEST used by WordPress 3.5 _ajax_nonce _page _per_page _signup_form _total _url _wp_http_referer _wp_original_http_referer _wp_unfiltered_html_comment _wpnonce _wpnonce-custom-header-upload aa action action2 active_post_lock add_new add_new_users addmeta admin_bar_front admin_color admin_email admin_password admin_password2 ajax align allblogs allusers alt approve_parent approved attachment attachment_id attachments auth_cookie author author_name autocomplete_type auto_draft auto-add-pages autosave background-attachment background-color background-position-x background-repeat banned_email_domains blog blog_name blog_public blog_upload_space blogname bulk_edit c calendar cat category_base category_name catslist changeit changes charset checkbox checked clear-recent-list closed comment comment_approved comment_author comment_author_email comment_author_url comment_content comment_date comment_ID comment_parent comment_post_ID comment_shortcuts comment_status comments_listing comments_popup confirmdelete connection_type content context cpage create-new-attachment createuser customize_messenger_channel customized customlink-tab date date_format date_format_custom day default-header delete delete_all delete_all2 delete_comments delete_option delete_tags delete_widget deletebookmarks deletecomment deleted deletemeta deletepost description detached dismiss display_name do edit_date email error exact excerpt features feed fetch fheight file fileupload_maxk filter find_detached first_comment first_comment_author first_comment_url first_name first_page first_post found_post_id fwidth global_terms_enabled GLOBALS gmt_offset guid height hh hidden hidden_aa hidden_jj hidden_mm hidden_mn hidden_hh history hostname hour html-upload id ID ids id_base illegal_names insert-gallery insertonlybutton interim-login item-object item-type jj json json_data key last_name limited_email_domains link_id link_image link_name link_rss link_url link_visible linkcheck locale locked log logged_in_cookie m media media_type menu menu_items menu-item menu-item-attr-title menu-item-classes menu-item-db-id menu-item-description menu-item-object menu-item-object-id menu-item-parent-id menu-item-position menu-item-target menu-item-title menu-item-type menu-item-url menu-item-xfn menu-locations menu-name message meta metakeyinput metakeyselect metavalue minute mm mn mode monthnum more move multi_number name nav-menu-locations new new_role new_slug new_title newcat newcomment_author newcomment_author_email newcomment_author_url newcontent newuser nickname no_placeholder noapi noconfirmation noredir number offset oitar option option_page order orderby p pb page page_columns page_id page_options paged pagegen_timestamp pagename parent_id pass1 pass2 password permalink_structure photo_description photo_src phperror ping_status plugin plugin_status pointer position post post_category post_data post_format post_ID post_id post_mime_type post_password post_status post_title post_type post_view postid posts preview primary_blog private_key ps public_key publish pwd query reassign_user reauth redirect redirect_to ref referredby registration registrationnotification rememberme remove-background removeheader removewidget reset-background resetheader review rich_editing robots role s same save savewidget savewidgets screen scrollto search second section selectall selection send send_password sentence short show_sticky sidebar sidebars signup_for signup_form_id site_id site_name sitename size skip-cropping spam spammed src ss stage start static status sticky subdomain_install submit subpost subpost_id super_admin tab tag tag_ID tag-name tag_base tags_input tax tax_input tag-name target taxonomy tb term text-color the-widget-id theme theme_status thumb timezone_string time_format time_format_custom title thumbnail_id trash trashed type undismiss unspam unspammed untrash untrashed url update_home_url updated upgrade upload_filetypes upload_space_check_disabled use_ssl user user_id user_login user_name username users verify-delete version visibility visible w weblog_title welcome_email welcome_user_email widget_id widget_number widget-id widget-recent-comments widget-rss width withcomments withoutcomments wp_customize wp_http_referer wp_screen_options wp-preview WPLANG x1 y1 year WP 2 09/09/2023 WP Plugin Customizing Putting Your Code Into Wordpress Admin admin embed iframe Developer Wordpress Got it — you want to embed an iFrame inside the WordPress admin area (not just in posts or pages). This is a bit different from front-end embedding because it involves customizing the WordPress dashboard or admin pages. Here’s how you can do it safely and cleanly: 1. Add an iFrame to a Custom Admin Page You can create a new admin menu item and load your iFrame inside it. Php Copy code // Add this to your theme's functions.php or a custom plugin function my_custom_admin_page() { add_menu_page( 'My iFrame Page', // Page title 'iFrame Page', // Menu title 'manage_options', // Capability 'my-iframe-page', // Menu slug 'my_iframe_page_html', // Callback function 'dashicons-admin-site', // Icon 20 // Position ); } add_action('admin_menu', 'my_custom_admin_page'); function my_iframe_page_html() { ?> {div class="wrap"> {h1>Embedded iFrame{/h1> {iframe src="https://example.com" width="100%" height="600" style="border:0;">{/iframe> {/div> {?php } 2. Embed iFrame in an Existing Admin Page via Hook If you want to insert it into an existing settings page, you can hook into the page’s output: Php Copy code function my_iframe_in_settings_page() { echo '{iframe src="https://example.com" width="100%" height="500" style="border:0;">{/iframe>'; } add_action('admin_notices', 'my_iframe_in_settings_page'); (Note: This will show at the top of all admin pages — you can conditionally check $_GET['page'] to target specific ones.) 3. Use a Dashboard Widget with iFrame This is great if you want the iFrame right on the WordPress Dashboard. Php Copy code function my_iframe_dashboard_widget() { wp_add_dashboard_widget( 'my_iframe_widget', 'My iFrame Widget', function() { echo '{iframe src="https://example.com" width="100%" height="400" style="border:0;">{/iframe>'; } ); } add_action('wp_dashboard_setup', 'my_iframe_dashboard_widget'); ???? Tips for Safety & Compatibility Only embed trusted URLs to avoid security risks. Some sites block embedding via X-Frame-Options. If your iFrame doesn’t load, that’s likely the reason. For better styling, you can enqueue custom CSS for admin pages using admin_enqueue_scripts. If you want, I can make a version where the iFrame is responsive and styled to match the WordPress admin UI so it feels native. Would you like me to prepare that? Undo ?php /* Plugin Name: Custom Admin PHP Script Description: Adds a custom admin page that runs a PHP script. Version: 1.0 Author: Your Name */ // Hook into admin menu add_action('admin_menu', 'cap_add_admin_page'); function cap_add_admin_page() { add_menu_page( 'Custom PHP Script', // Page title 'Custom Script', // Menu title 'manage_options', // Capability 'custom-php-script', // Menu slug 'cap_render_admin_page', // Callback function 'dashicons-editor-code', // Icon 100 // Position ); } // Render the admin page function cap_render_admin_page() { if (!current_user_can('manage_options')) { wp_die('Unauthorized user'); } echo '{div class="wrap">{h1>Custom PHP Script Output{/h1>'; // Your PHP script logic here try { $result = date('Y-m-d H:i:s'); // Example: current date/time echo "{p>Server time is: {strong>{$result}{/strong>{/p>"; } catch (Exception $e) { echo '{p style="color:red;">Error: ' . esc_html($e->getMessage()) . '{/p>'; } echo '{/div>'; } WP Plugin 0 01/19/2026 WP Plugin Formatting Making Your Shortcode Report Look Good In WP style.css shortcode report plugin Shortcode Add this to your WP custom css body {overflow:visible;} table{border-color:black;border-collapse:collapse;mso-padding-alt:0in 5.4pt 0in 5.4pt} textarea{ font-size:8pt; } hr.cell_split{color:red;} tr.alt{background-color:#EEEEEE;} td{font-family:verdana;font-size:8pt;border:1px solid #000000;} .navletters {margin:0 7px 0 7px; } td.code_mod {max-width: 600px;} div.scroll{overflow:auto;text-align:left;min-width:200px;max-width:600px;max-height:200px; } input[type="button"],input[type="submit"]{ background-color: #64c9ea; border: none; border-radius: 2px; box-shadow: none; color: #fff; cursor: pointer; padding: 5px 5px; min-width:10px;margin:5px;} input[type="text"],input[type="select"] {font-family:verdana;font-size:10pt;margin:5px;padding: 2px 2px;width:70%} WP Plugin 5 09/09/2023 WP Plugin Plug-in Link Your Admin Inside Of Wordpress Admin plug-in plug in admin panel link admin Custom Create a folder under wp-content/plugins. Create a php file called swdadmin.php with the following code: SWD MenuRenters"; } ?> Of course you can use your own menu links. Your admin will load externally to bypass wordpress style sheet. My non wordpress admin needed to be modified to see if is linked via wordpress admin to bypass my login and use the wordpress login. Again your way of connecting to the database will be different from mine. // start my crap here session_start(); include("config.php"); // end my crap here // add wordpress info require_once("../wp-load.php"); if(!is_user_logged_in() && $bypass!=true){ echo "This site is under construction"; exit; } else $wordpress=true; if($wordpress==false){ // end wordpress info // start my crap here $db = mysql_pconnect($server, $user,$password); if (!$db){ echo 'Error: Could not connect to database. Please try again later.'; exit; } mysql_select_db($database); if($pageLevel=='')$pageLevel=3; if($LEVEL<$pageLevel && $bypass!=true){ echo ""; echo "You need to login with more security.Click here to continue.";$_SESSION['LEVEL']='';exit; } }else $_SESSION['LEVEL']=10; // end my crap here. I just check to see if $wordpress is true and set the permission using wordpress login data WP Plugin 725 09/09/2023 WP Plugin Plug-in Keep Colorado Free wordpress admin plugin shortcode membership form Custom dbh; function MemberCheck($atts){ global $wpdb; global $appid;global $connection; //print_r ($atts);exit; $dis= $_COOKIE["Member"]; //if($dis!="true"){ header("Location:https://www.keepcofree.com/member-login/");exit; } if(substr($dis,0,4)!="true" || $dis=="true"){ ?>dbsql($sql); if($atts["level"]==1)return; if($atts["level"]==2 && $r->data1["paid"]==0){ ?> WP Plugin 3 12/22/2022 WP Plugin Plug-in Scriptures show table of records Custom dbh; $table='';$terms='';$where="";$AND='WHERE'; $orderby="ORDER BY dateof DESC"; //>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> $pageLevel=3;$bypass=true;$varView="https://jesusovergangs.com/demo/"; $savedPosts=array(); $savedGets=array(); $_POST['resetSM']=isset($_POST['resetSM'])?$_POST['resetSM']:''; if($_POST['resetSM']!=""){ foreach($_SESSION as $k=>$value) { unset($_SESSION[$k]); } foreach($_GET as $k=>$value) { unset($_GET[$k]); } foreach($_POST as $k=>$value) { unset($_POST[$k]); } } else { $savedPosts= json_decode(stripslashes($_SESSION["jsonPost"]),JSON_OBJECT_AS_ARRAY); $savedGets= json_decode(stripslashes($_SESSION["jsonGet"]),JSON_OBJECT_AS_ARRAY); } ///echo $savedPosts["SEARCH"]."=============".$_POST['SEARCH']; print_r ($savedPosts); $_POST['value']=isset($_POST['value']) ? $_POST['value'] : ''; $_GET['RESET']=isset($_GET['RESET']) ? $_GET['RESET'] : ''; $_GET['prn']=isset($_GET['prn'])?$_GET['prn']:''; $_GET['BACK']=isset($_GET['BACK'])?$_GET['BACK']:''; $_POST['inside_search']=isset($_POST['inside_search'])?$_POST['inside_search']:$savedPosts['inside_search']; if($_POST['inside_search']=="on"){ $checked1="checked"; $anywhere="%"; } $_GET['URL']=isset($_GET['URL'])?$_GET['URL']:''; $_POST['BUTTON']=isset($_POST['BUTTON'])?$_POST['BUTTON']:''; $_POST['SEARCH']=isset($_POST['SEARCH'])?$_POST['SEARCH']:$savedPosts["SEARCH"]; $search1= $_POST['SEARCH']; $_POST['updaterecord1']=isset($_POST['updaterecord1'])?$_POST['updaterecord1']:$savedPosts["updaterecord1"]; $FID1=$_POST['updaterecord1']; $_POST['resetLG']=isset($_POST['resetLG'])?$_POST['resetLG']:''; $_REQUEST['txWhere']=isset($_REQUEST['txWhere'])?$_REQUEST['txWhere']:''; $txWhere=$_REQUEST["txWhere"]; $_REQUEST['txOrderby']=isset($_REQUEST['txOrderby'])?$_REQUEST['txOrderby']:$savedPosts["txOrderby"]; $txOrderby= htmlspecialchars($_REQUEST['txOrderby'],ENT_QUOTES); //echo">>>>".$txOrderby; $ALL=isset($_GET['ALL'])?$_GET['ALL']:''; $_GET['MULTINPUT']=isset($_GET['MULTINPUT'])?$_GET['MULTINPUT']:''; $_GET['PDS_']=isset($_GET['PDS_'])?$_GET['PDS_']:''; $_GET['PDS_KILL']=isset($_GET['PDS_KILL'])?$_GET['PDS_KILL']:''; $_GET['INX']=isset($_GET['INX'])?$_GET['INX']:$savedGets['INX']; $INX=$_GET['INX']; $_GET['VIEW']=isset($_GET['VIEW'])?$_GET['VIEW']:''; $_GET['NUM']=isset($_GET['NUM'])?$_GET['NUM']:''; $_GET['ALPHA']=isset($_GET['ALPHA'])?$_GET['ALPHA']:''; $_GET['SB']=isset($_GET['SB'])?$_GET['SB']:''; $_GET['report']=isset($_GET['report'])?$_GET['report']:''; $part['query']=isset($part['query'])?$part['query']:''; $part['fragment']=isset($part['fragment'])?$part['fragment']:''; $prn=$_GET["prn"]; $_SESSION['INSIDE']=isset($_SESSION['INSIDE'])?$_SESSION['INSIDE']:''; //$_SESSION['MULTINPUT']=isset($_SESSION['MULTINPUT'])?$_SESSION['MULTINPUT']:'';$_SESSION['MULIUPDATEFIELD']=isset($_SESSION['MULIUPDATEFIELD'])?$_SESSION['MULIUPDATEFIELD']:''; $_SESSION['TABLENAME']=isset($_SESSION['TABLENAME']) ? $_SESSION['TABLENAME'] : ''; $_SESSION['PDS_SAVE']=isset($_SESSION['PDS_SAVE'])?$_SESSION['PDS_SAVE']:''; $_SESSION['SORTBY']=isset($_SESSION['SORTBY'])?$_SESSION['SORTBY']:''; $_SESSION['FIELDSAVE']=isset($_SESSION['FIELDSAVE'])?$_SESSION['FIELDSAVE']:''; $_SESSION['SEARCHSAVE']=isset($_SESSION['SEARCHSAVE'])?$_SESSION['SEARCHSAVE']:''; $_SESSION['URLSAVE']=isset($_SESSION['URLSAVE'])?$_SESSION['URLSAVE']:''; $ALPHA=$_GET['ALPHA']; if($ALPHA!=''){ $_SESSION['ALPHA_SAVE']=$ALPHA; } ELSE $ALPHA=$_SESSION['ALPHA_SAVE']; if($_POST["SEARCH"]!=""){$_SESSION['ALPHA_SAVE']="";$ALPHA="";} if($txWhere!="") {$whereCondition=$AND.$txWhere; $AND=" AND ";} if($ALPHA!=""){$whereAlpha="$AND $FID1 LIKE '$ALPHA%'";$AND=" AND ";} //store data for restart //echo $jsonSess = json_encode($_SESSION); $_SESSION["jsonPost"]= json_encode($_POST); $_SESSION["jsonGet"]= json_encode($_GET); $dis.=""; $dis1='';$dis.=""; $dis.="$dis1"; if($LEVEL>3){$dis.="";}else {$dis.="";} $title1="n "; //vb.net comboSearchFields function start $selectme=array();$ftitle=explode(".",$FID1); $selectme[$ftitle[1]]="selected"; $title1.="dateofn"; $title1.="commentn"; // `Report Search Fields` $title1.="n"; $dis.=$title1; // `Report Search2` $dis.="Look Inside Data Conditions:Order: "; // `Report Start Task` $dis.="n"; function CreateLinks($inx,$num,$range){ global $ALPHA; global $VIEW;global $txWhere; $ratio=(int)($num/$range);$start=1;$maxlinks=30; if($ratio<$num/$range)$ratio+=1; $end=$ratio; if($ratio>$maxlinks){ $start=$inx/$range-$maxlinks/2; if($start<1)$start=1; $end=$start+$maxlinks; if($end>$ratio){ $end=$ratio;$start=$end-$maxlinks; } } for($i=$start;$i<=$end;$i++){ switch($VIEW){ case 2: $submenu.="$i |"; break; default: $submenu.="$i |"; } } $dis1.=$submenu; return $dis1; } //Form variables on update $maxrec=20; $whereInnerjoin="";$whereSearch="";$AND=" WHERE "; $table='';$terms='';$where=""; $orderby=" ORDER BY dateof DESC"; if($txOrderby!="")$orderby=" ORDER BY ".$txOrderby; //global $wbdb; $connection=$wbdb->dbh; $whereInnerjoin="";$whereCondition="";$whereAlpha="";$whereSearch="";$AND="WHERE "; $table='';$terms='';$where="";$AND='WHERE '; $t0="scripture_comment";$tables.="$t0";$r=new mysqli_swd(); $terms.="$t0.commentid,$t0.dateof,$t0.comment,$t0.caregoryid"; if($search1!=''){ $sec1=substr($search1,0,1); if($sec1=="<" || $sec1==">"){ $search1=substr($search1,1,strlen($search1)-1); switch($sec1){ case "<": $whereSearch.=$AND.$FID1." <= '$search1'";$AND=' AND ';break; case ">": $whereSearch.=$AND.$FID1." >= '$search1'";$AND=' AND ';break; } } else { $whereSearch.=$AND.$FID1." LIKE '".$anywhere.$search1."%'"; $AND=' AND '; } } if(function_exists("global_search_filter")){ $whereSearch.=global_search_filter($t0); } // `Report Terms` $innerjoin="SELECT $terms FROM $tables ".$whereInnerjoin.$whereSearch.$txWhere.$orderby; $NUM=$r->num; //asss // `Sql Where` MODIFY VARIOUS WHERE'S // echo $innerjoin."".$countrecs.""; $cancel==false; //CREATE ORDER BY if($NUM>$maxrec && $report=='') echo CreateLinks($INX,$NUM,$maxrec); // `Sql Where` MODIFY VARIOUS WHERE'S $cancel==false; //CREATE ORDER BY if($SB=="``"){ $SB=$_SESSION["SORTBY"]; }else{ if($_SESSION["SORTBY"]==$SB)$SB=$SB." DESC"; $_SESSION["SORTBY"]=$SB; } $cancel==false; // `Sql Report` 1st Custom Changes to SQL [$t?,$table,$where,$whereAlpha,$whereSearch,$orderby] & Back?RETID= if($SB=="``" || $SB=="")$sort="`dateof` DESC".$txOrderby; //include txtbox order by else{ $sort=$SB.$txOrderby; } //Prepare multiple column sort. if(gettype($sortColumn)=='array'){ for($ii=1;$ii<=count($sortColumn);$ii++){ if(strpos("|".$sort,stripDESC($sortColumn[$ii]))==0) $sort.=",".$sortColumn[$ii]; } } // `Sort Report Header Links` $orderby=" ORDER BY $sort"; //$_SESSION["SORTBY"]=$sort; // `Sql Where` append to innerjoin // `Sort Report Header Links` if($INX=="")$INX=0; $query=$innerjoin; $r->dbsql($query);$result=$r->data;$NUM=$r->num; if($NUM>$maxrec){ $dis.= CreateLinks($INX,$NUM,$maxrec); $query=$innerjoin." LIMIT ".$INX.",".$maxrec; }else{ $query=$innerjoin; } //$countrecs="SELECT count(commentid) FROM innerjoin"; $query2=$countrecs; //END DESIGN CODE //$innerjoin="SELECT $terms FROM $tables $where"; $grouping=false; $r->dbsql($query);$result=$r->data;$num=$r->num; $disTitle="Dateof Comment"; //if($grouping==true)echo "$disTitle";else echo "".$disTitle; rem line in vb $cnt=0;// =============== START PRINTING VALUES =========== $dis.="".$disTitle; // add line in vb for($i=1;$i<=$num;$i++){ $row=$r->dbRow($result); $defaultField='One of these fields listed below'; $commentid=$row['commentid']; $dateof=$row['dateof']; $dateof=convertmdy($dateof); $comment=$row['comment']; $comment=ShortenString($comment); $caregoryid=$row['caregoryid']; // `Report Format` //Create Totals Here $cnt++;//manually assign the defaultField varaible from extracted terms. if($lastfield!=$defaultField && $grouping==true){ $dis.="n"; $dis.="$defaultField $disTitlen"; $lastfield=$defaultField; } if($class=='')$class='class=alt'; else $class=''; $cnt++;$dis.="n"; $dis.="$dateof $comment"; //$dis.=" $commentid $dateof $comment $caregoryid"; $dis.=""; //Generate Totals Here } return $dis.""; } include("WPfunctions.php"); add_shortcode("shit", "Scriptures"); ?> WP Plugin 1 12/22/2022 WP Themes Archive Software Web Design Home Page Code page plugin ?? Executive Pro /public_html/SWDHome/wp-content/themes/executive-pro/pagesw.php <?php /** * Genesis Framework. * Template Name: SWpages * * WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances. * Please do all modifications in the form of a child theme. * * @package GenesisTemplates * @author StudioPress * @license GPL-2.0+ * @link http://my.studiopress.com/themes/genesis/ */ //* This file handles pages, but only exists for the sake of child theme forward compatibility. /* Moved to admin panel function include_link() { $_SESSION["LEVEL"]=10; echo"Access <a href='/admin31/LoginScreen.php?UR=s0ftw8r3&PD=w3bd3s1gn' target='NewWindow'>Secondary Admin</a>"; } */ function include_page() { global $page1;global $wpdb; global $row; $dirSW="/wp-content/themes/executive-pro"; switch($page1){ case 48: include(get_theme_root_uri()."/executive-pro/colorconvert.php");break; case 53: //InsertCodeSW($page1); break; //BEGIN OF NOTES BEGIN OF NOTES BEGIN OF NOTES BEGIN OF NOTES BEGIN OF NOTES BEGIN OF NOTES BEGIN OF NOTES BEGIN OF NOTES BEGIN OF NOTES BEGIN OF NOTES BEGIN OF NOTES $PDS_=$_GET['PDS_'];$PDS_ = ereg_replace('[^0-9]', '', $PDS_); $SB=$_GET["SB"]; $url=site_url()."?page_id=53&PDS_=$PDS_";$varView="?page_id=53&PDS_=$PDS_&SB=$SB"; $SB="`".$_GET["SB"]."`"; //compiled version: 1.2013.212.0512 function stripDESC($var1){ $m=strpos($var1,'DESC'); if($m>0)$var1=substr($var1,0,$m-1); return $var1; } function CreateLinks($inx,$num,$range,$ALPHA,$VIEW,$varView){ $ratio=(int)($num/$range);$start=1;$maxlinks=30; if($ratio<$num/$range)$ratio+=1; $end=$ratio; if($ratio>$maxlinks){ $start=$inx/$range-$maxlinks/2; if($start<1)$start=1; $end=$start+$maxlinks; if($end>$ratio){ $end=$ratio;$start=$end-$maxlinks; } } for($i=$start;$i<=$end;$i++){ switch($VIEW){ case 2: $submenu.="<A Href='$varView&INX=".($i-1)*$range."&NUM=$num&ALPHA=$ALPHA&VIEW=$VIEW'>$i</A>&nbsp;|&nbsp;"; break; default: $submenu.="<A Href='$varView&INX=".($i-1)*$range."&NUM=$num&ALPHA=$ALPHA&VIEW=$VIEW'>$i</A>&nbsp;|&nbsp;"; } } $dis1.=$submenu; return $dis1; } //include("../admin31/mystuff.php"); //include("../admin31/functions.php"); $varForm="codeForm.php"; // HEADER CODE HERE $prn=$_GET["prn"]; $AC=$_GET["AC"]; $AC = ereg_replace('[^0-9]', '', $AC); switch ($AC){ default: echo "<div id='swnotes' style='float:right;'>"; $sessionListSave='@'.$sessionListSave; $defaultSearchField="code.title"; $_SESSION["TABLENAME"]="code"; $INX=$_GET["INX"];$NUM=$_GET["NUM"];$ALPHA=$_GET["ALPHA"];$VIEW=$_GET["VIEW"];$report=$_GET["report"]; $BUTTON=$_POST['BUTTON'];$search1=$_POST["SEARCH"];$FID=$_POST["updaterecord"]; if($_POST["resetSM"]=="*")$search1="*"; if($_POST["resetLG"]=="**")$search1="**"; if($_GET['PDS_KILL']!='')$_SESSION['PDS_SAVE']=''; //if($PDS_!=''){ $_SESSION['PDS_SAVE']=$PDS_;$_SESSION['INX1']=$_GET['INX']; $_SESSION['NUM1']=$_GET['NUM']; $_SESSION['ALPHA1']=$_GET['ALPHA'] ; $_SESSION['VIEW1']=$_GET['VIEW'];$INX=0;$NUM=0;$ALPHA='';$VIEW=0; } //ELSE $PDS_=$_SESSION['PDS_SAVE']; // `Start Report` $sql="SELECT * FROM language ORDER BY language"; $rlang=mysql_query($sql);$numlang=mysql_numrows($rlang); for($i=1;$i<=$numlang;$i++){ $l=mysql_fetch_array($rlang); $lang[$l[0]]=$l[1]; } if($_SESSION["FIELDSAVE"]=="")$_SESSION["FIELDSAVE"]=$defaultSearchField; if($FID==""){ $FID=$_SESSION["FIELDSAVE"]; } else $_SESSION["FIELDSAVE"]=$FID; if($search1=="*" || $search1=="**"){ $_SESSION["SEARCHSAVE"]=""; if($search1=="**"){ $_SESSION['PDS_SAVE']="";$PDS_=""; } $search1=""; } if($search1==""){ $search1=$_SESSION["SEARCHSAVE"]; } else{ $INX="";$_SESSION["SEARCHSAVE"]=$search1; } if($_POST["inside_search"]=="on" || $_SESSION['INSIDE']=='on'){ $_SESSION['INSIDE']='on';$checked1='checked';$anywhere='%'; } //* Place in Alpha Choice ** if($prn==""){ for($i=65;$i<=90;++$i){ $dis1.="<a class='locate' href='$varView&VIEW=2&ALPHA=".chr($i)."'>".chr($i)."&nbsp;&nbsp;&nbsp;</a>"; } echo $dis1; // ** END ALPHA CHOICE ** // `Report Before Search` echo "<form name='search' method='post' action='$varView'><table width=300><tr>"; echo "<td class=search><input name='SEARCH' type='text' size=20 maxlength=60 value='".$search1."' title='** or * Reset Search.'> <input name='resetSM' type='submit' value='*'><input name='resetLG' type='submit' value='**'><br>"; echo "<select name='updaterecord' size=1>n"; if($FID=="code.title")$FID="code.title"; if($FID=='code.title')echo "<option selected value='code.title'>titlen"; else echo"<option value='code.title'>titlen"; if($FID=='code.code')echo "<option selected value='code.code'>coden"; else echo"<option value='code.code'>coden"; if($FID=='code.keywords')echo "<option selected value='code.keywords'>keywordsn"; else echo"<option value='code.keywords'>keywordsn"; // `Report Search Fields` echo"</select>n"; // `Report Search2` echo "<input name='BUTTON' type='submit' value='SEARCH'>&nbsp;&nbsp;<input type='checkbox' name='inside_search' title='Check me to look inside the data.' $checked1>&nbsp;&nbsp;Look inside data </form>"; // `Report Start Task` echo "</table>"; } //Form variables on update $maxrec=40;if($report==1 || $prn==1)$maxrec=500000; $table='';$terms='';$where='';$AND='WHERE'; $t1="operation";$tables.="$t1,"; $terms.="$t1.operation,"; if(strpos('|'.$where,'WHERE')>0)$AND="AND"; else if($AND=='')$AND="WHERE"; $where.=" $AND code.operationid=operation.operationid";$AND=' AND'; $t0="code";$tables.="$t0"; $terms.="$t0.codeid,$t0.operationid,$t0.title,$t0.code,$t0.keywords, $t0.languageid,$t0.show_html,$t0.make_public,$t0.viewed,$t0.viewed_date"; // `Report Terms` $cancel==false; // `Sql Report` if($PDS_!='' && $cancel==false){ $where.=" $AND $t0.languageid='$PDS_'";$AND='AND'; } if($SB=="``"){ $SB=$_SESSION["SORTBY"]; }else{ if($_SESSION["SORTBY"]==$SB)$SB=$SB." DESC"; $_SESSION["SORTBY"]=$SB; } if($SB=="``" || $SB=="")$sort="`operation`"; else{ $sort=$SB; // `Sort Report Header Links` } if($SB!=""){ $innerjoin=stripDESC($SB);$innerjoin=str_replace("`","",$innerjoin); if(strpos($terms,".".$innerjoin)==0){ $SB="``";$_SESSION["SORTBY"]="";$search1=""; $_SESSION["SEARCHSAVE"]=""; $sort='`operation`'; } } $innerjoin="SELECT $terms FROM $tables $where"; $countrecs="SELECT count(codeid) FROM $tables $where"; $whereAlpha="$AND $FID LIKE '$ALPHA%'"; if($FID!=''){ $whereSearch=" $AND $FID LIKE '".$anywhere.$search1."%'";$AND='AND'; } else { $whereSearch="$AND $FID LIKE '".$anywhere.$search1."%'";$AND='AND'; } if(strpos('|'.$search1,'=')==1){ if(strpos($innerjoin,'WHERE')==0)$AND='WHERE';$search1=substr($search1,1,strlen($search1)-1); $whereSearch=" $AND $search1";$AND='AND'; } $sortcount=0; $orderby=" ORDER BY $sort"; // `Sql Where` append to innerjoin //*************** START REPORT VIEWS ========================== switch($VIEW){ case 2: //======= REPORT ALPHA ========== $whereSearch=str_replace('WHERE','AND',$whereSearch); switch($INX){ case '': $query=$innerjoin.$whereAlpha.$whereSearch; $INX=0; default: $query=$innerjoin.$whereAlpha.$whereSearch." ORDER BY $sort LIMIT ".$INX.",".$maxrec; } $query2=$countrecs.$whereAlpha.$whereSearch; break; // ============= END ALPAHA ================================== default: // next VIEW switch($search1){ case ''://no search used switch($INX){ case '': $query=$innerjoin; $INX=0; default: $query=$innerjoin.$orderby." LIMIT ".$INX.",".$maxrec; } $query2=$countrecs; break; default://SEARCH USED HERE switch($INX){ case '': $query=$innerjoin.$whereSearch; $INX=0; default: $query=$innerjoin.$whereSearch.$orderby." LIMIT ".$INX.",".$maxrec; } $query2=$countrecs.$whereSearch; break; } // end search } // end report $result2=mysql_query($query2); $row2=mysql_fetch_array($result2);$NUM=$row2[0]; $result99=mysql_query($query); $numcode=mysql_numrows($result99); if($VIEW=='')$VIEW=0; if($report!=1){ if($prn==""){ if($NUM>$maxrec) echo CreateLinks($INX,$NUM,$maxrec,$ALPHA,$VIEW,$varView);$dis1=''; echo "<br><form action='$varForm?FORM=0&PID=$PID&INX=$INX&NUM=$NUM&ALPHA=$ALPHA&VIEW=$VIEW' method=post><input type=button value='Printer Friendly' onclick="location.href='$varView?ALPHA=$ALPHA&VIEW=$VIEW&prn=1'"></form>"; } } // == START PRINTING HEADERS OR CHECK FOR DATA REPORT ==== $width="style='width:900px;'"; $dis1.="<table border=1 class=view $width><tr>"; $dis1.="<td class=view ><a href='$varView&SB=languageid'>Languageid</a></td><td class=view><a href='$varView&SB=operation'>Operation</a></td> <td class=view ><a href='$varView&SB=title'>Title</a></td> <td class=view ><a href='$varView&SB=code'>Code</a></td> <td class=view ><a href='$varView&SB=keywords'>Keywords</a></td> <td class=view ><a href='$varView&SB=viewed'>Viewed</a></td><td>Details</td>"; // `Report Append Title` $dis1.="</tr>"; echo $dis1; $cnt=0;// =============== START PRINTING VALUES =========== for($i=1;$i<=$numcode;$i++){ $rcode=mysql_fetch_array($result99); $operation=stripslashes($rcode['operation']); $codeid=$rcode['codeid']; $operationid=$rcode['operationid']; $title=$rcode['title']; $title=stripslashes($title); $keywords=$rcode['keywords']; $keywords=stripslashes($keywords); $languageid=$rcode['languageid']; $show_html=$rcode['show_html']; $make_public=$rcode['make_public']; $viewed=$rcode['viewed']; $viewed_date=$rcode['viewed_date']; $code=$rcode['code']; if($show_html==1) { $code="<textarea rows=4 cols=40>".stripslashes($code)."</textarea>"; } else { $code="<textarea rows=4 cols=40>".stripslashes($code)."</textarea>"; } // `Report Format` if($class=='')$class='class=alt'; else $class=''; $cnt++;$dis.="n<tr $class>"; $dis.="<td class=view>$lang[$languageid]</td> <td class=view>$operation</td> <td class=view>$title</td> <td class=view>$code</td> <td class=view>$keywords</td> <td class=viewnumber align=right>$viewed</td><td class=view><a href='$varView&AC=1&PID=$codeid' name='$codeid'>Get Results</a></td> "; // `Report Append Variable` $dis.="</tr>"; //Generate Totals Here } echo "$dis</table></div>"; if($NUM>$maxrec) echo CreateLinks($INX,$NUM,$maxrec,$ALPHA,$VIEW,$varView); $urlreturn=$varView;if($_GET['URL']!='' || $_SESSION['URLSAVE']!=''){ if($_GET['URL']!=''){ $_SESSION['URLSAVE']=$_GET['URL']; } $urlreturn=$_SESSION['URLSAVE']; } // `End Report` break; case 1: $maxrec=40; $PID=$_GET["PID"]; $PID = ereg_replace('[^0-9]', '', $PID); $table='';$terms='';$where='';$AND=''; $t0="code";$tables.="$t0"; $terms.="$t0.codeid,$t0.title,$t0.code,$t0.show_html,$t0.make_public"; $where="WHERE codeid=$PID"; $innerjoin="SELECT $terms FROM $tables $where"; $query=$innerjoin; $result99=mysql_query($query);$num=mysql_numrows($result99); $dis1.="<div id='swnotes' style='width:880px;float:right;'>"; echo $dis1; $cnt=0;// =============== START PRINTING VALUES =========== for($i=1;$i<=$num;$i++){ $rcode=mysql_fetch_array($result99); $codeid=$rcode['codeid']; $show_html=$rcode['show_html']; $title=$rcode['title']; $title=stripslashes($title); //$code=stripslashes($code); if($show_html==0)$code="<textarea cols=100 rows=30>$code</textarea>"; $make_public=$rcode['make_public']; if($show_html==1) {$b[0]='checked'; $code=stripslashes($rcode['code']); $code=str_replace(chr(10),"<br>",$code); } else { $b[0]=''; $code="<textarea cols=60 rows=40>".stripslashes($rcode['code'])."</textarea>"; } if($make_public==1)$b[1]='checked'; else $b[1]=''; $dis1=array("show_html"=>"<input type='checkbox' name='show_html' ".$b[0].">","make_public"=>"<input type='checkbox' name='make_public' ".$b[1].">","bulldung"=>"scoopshovel"); //REPORT FORMAT here if($class=='')$class='class=alt'; else $class=''; $cnt++;$dis.="<h3>$title</h3>$code</td>"; $dis.=""; } echo $dis; echo "<p><input type=button name='return' value='Return' onclick="location.href='$varView#$PID';"></p></div>"; $sql="UPDATE code SET viewed=viewed+1, viewed_date='".date("Y-m-d")."' WHERE codeid=$codeid"; mysql_query($sql); break; } break; // END OF NOTES END OF NOTES END OF NOTES END OF NOTES END OF NOTES END OF NOTES END OF NOTES END OF NOTES END OF NOTES END OF NOTES END OF NOTES END OF NOTES case 89: InsertCodeSW($page1); break; default: echo admin_url()."<br>". site_url()."<br>". content_url()."<br>". includes_url()."<br>". wp_upload_dir()."<br>". get_template_directory_uri()."<br>". ABSPATH."<br>". get_theme_root_uri(); } } $page1=$post->ID; if(is_user_logged_in()){ add_action('genesis_before_sidebar_widget_area', 'include_link'); } add_action('genesis_entry_footer', 'include_page'); /* add_action('genesis_after_post_content', 'include_page'); function include_page() { global $wpdb; $page_id = genesis_get_custom_field('products'); $page_data = get_page( $page_id ); $title = $page_data->post_title; switch($page_data->ID){ case 69: echo "product prices coming soon"; break; default: echo "why are we here"; break; } } */ genesis(); WP Themes 1 12/22/2022 WP Themes Customizing Executive Pro Theme Html5 article header executive pro Genesis Framework [CSS Changes] // moves content on 2 column article{ width:825px; } //content to navigation separation .content { float: right; width: 900px; padding: 40px 60px 10px; padding: 0.5rem 6rem 0.5rem; } Width of the overall container .site-container { margin: 0 auto; width: 1140px; } I just bloated the rest of css reference to keep from shrinking when resizing window @media only screen and (max-width: 1200px) { .site-container { max-width: 1960px; } @media only screen and (max-width: 1023px) { .site-container { max-width: 1768px; } @media only screen and (max-width: 767px) { .site-container { max-width: 1600px; } WP Themes 1287 09/09/2023 WP Themes Customizing Genesis Loop Hooks Comparison loop hooks html5 xhtml Genesis Framework Genesis Loop Hooks Comparison Below is a comparison chart for the loop hooks in Genesis 1.0+ themes vs. the new loop hooks in Genesis 2.0+ themes. Before Entry XHTML Hook Location --- HTML5 Hook Location genesis_before_post --- genesis_before_entry Entry Header XHTML Hook Location --- HTML5 Hook Location genesis_before_post_title --- genesis_entry_header genesis_post_title --- genesis_entry_header genesis_after_post_title --- genesis_entry_header genesis_before_post_content --- genesis_entry_header Entry Content XHTML Hook Location --- HTML5 Hook Location genesis_post_content --- genesis_entry_content Entry Footer XHTML Hook Location --- HTML5 Hook Location genesis_after_post_content --- genesis_entry_footer After Entry XHTML Hook Location --- HTML5 Hook Location genesis_after_post --- genesis_after_entry WP Themes 1644 09/09/2023 WP Themes Formatting How To Create A Custom Landing Page Template Genesis Framework genesis remove_action template genesis_ remove page content Genesis Framework Creating page templates in Genesis is fairly easy. All you need to do is copy an existing page template like the page_landing.php file and make changes to the code in the file. By default, most landing page templates generate a content area which is fairly narrow which you can change in your themes style.css file or use this code to create a new one. In this tutorial, i’ll show you how to create both a full width landing template and a narrow width template for people who use the Genesis design framework. Wide Landing Page Template Simply create a new file using a code editor like Notepad++ and name it something like page_custom.php. Paste in this code and upload the new file to your themes folder. Here’s what the above code produces using the Metro child theme by StudioPress: You can style your landing page using the new custom class generated by this code. Narrow Landing Page Template The CSS code below creates a template with a narrow content area otherwise use the PHP code above without any styling. .custom-landing #wrap { max-width: 500px; } .custom-landing #inner { padding-top: 0; } After adding the above CSS code, here’s the result: Adjust Width Simply use this code in your child themes style.css file to adjust the width of your landing page content area by percentage: .custom-landing #wrap { max-width: 100%; } Premium Landing Page Plugins http://wpsites.net/web-design/how-to-create-a-custom-landing-page-template-for-genesis/ WP Themes 1153 09/09/2023 WP Themes Formatting Register Widget Areas In Your Admin Cpanel Genesis Framework widget areas register add_theme_support CHILD_THEME_NAME genesis_unregister_layout genesis_register_ Genesis Framework Creating a child themes functions.php: 'Gray', 'associate-green' => 'Green', 'associate-red' => 'Red' ) ); /** Child theme (do not remove) */ define( 'CHILD_THEME_NAME', 'Associate Theme' ); define( 'CHILD_THEME_URL', 'http://www.studiopress.com/themes/associate' ); $content_width = apply_filters( 'content_width', 580, 0, 910 ); /** Unregister 3-column site layouts */ genesis_unregister_layout( 'content-sidebar-sidebar' ); genesis_unregister_layout( 'sidebar-sidebar-content' ); genesis_unregister_layout( 'sidebar-content-sidebar' ); /** Add new featured image sizes */ add_image_size( 'home-bottom', 150, 130, TRUE ); add_image_size( 'home-middle', 287, 120, TRUE ); /** Add suport for custom background */ add_custom_background(); /** Add support for custom header */ add_theme_support( 'genesis-custom-header', array( 'width' => 960, 'height' => 120 ) ); /** Add support for structural wraps */ add_theme_support( 'genesis-structural-wraps', array( 'header', 'nav', 'subnav', 'inner', 'footer-widgets', 'footer' ) ); /** Add support for 3-column footer widgets */ add_theme_support( 'genesis-footer-widgets', 3 ); /** Register widget areas */ genesis_register_sidebar( array( 'id' => 'featured', 'name' => __( 'Featured', 'associate' ), 'description' => __( 'This is the featured section.', 'associate' ), ) ); genesis_register_sidebar( array( 'id' => 'home-middle-1', 'name' => __( 'Home Middle #1', 'associate' ), 'description' => __( 'This is the first column of the home middle section.', 'associate' ), ) ); genesis_register_sidebar( array( 'id' => 'home-middle-2', 'name' => __( 'Home Middle #2', 'associate' ), 'description' => __( 'This is the second column of the home middle section.', 'associate' ), ) ); genesis_register_sidebar( array( 'id' => 'home-middle-3', 'name' => __( 'Home Middle #3', 'associate' ), 'description' => __( 'This is the third column of the home middle section.', 'associate' ), ) ); genesis_register_sidebar( array( 'id' => 'home-bottom-1', 'name' => __( 'Home Bottom #1', 'associate' ), 'description' => __( 'This is the first column of the home bottom section.', 'associate' ), ) ); genesis_register_sidebar( array( 'id' => 'home-bottom-2', 'name' => __( 'Home Bottom #2', 'associate' ), 'description' => __( 'This is the second column of the home bottom section.', 'associate' ), ) ); WP Themes 764 09/09/2023 WP Themes Function List Of Hooks That Have Been Added To The Genesis Framework: hooks genesis wordpress Genesis Framework genesis_pre This is the first hook to execute within Genesis. Think of any function hooked to it as being executed before any Genesis functions have loaded. genesis_pre_framework This hook executes immediately before any of the Genesis Framework components have been loaded, but after all the constants have been defined. genesis_init This hook fires at the end of the /lib/init.php file. Think of any function hooked to it as being executed after all Genesis functions have loaded, but before any custom code in the child functions.php file is run. genesis_title This hook executes between tags and outputs the doctitle. You can find all doctitle related code in /lib/structure/header.php. genesis_meta This hook executes in the section of the document source. By default, things like META descriptions and keywords are output using this hook, along with the default stylesheet and the reference to the favicon. genesis_before This hook executes immediately after the opening tag in the document source. genesis_after This hook executes immediately before the closing tag in the document source. genesis_before_header This hook executes immediately before the header (outside the #header div). genesis_header By default, this hook outputs the header code, including the title, description, and widget area (if necessary). genesis_after_header This hook executes immediately after the header (outside the #header div). genesis_site_title By default, this hook outputs the site title, within the header area. It uses the user-specified SEO settings to build the site title markup appropriately. genesis_site_description By default, this hook outputs the site description, within the header area. It uses the user-specified SEO settings to build the site description markup appropriately. genesis_before_content_sidebar_wrap This hook executes immediately before the div block that wraps the content and the primary sidebar (outside the #content-sidebar-wrap div). genesis_after_content_sidebar_wrap This hook executes immediately after the div block that wraps the content and the primary sidebar (outside the #content-sidebar-wrap div). genesis_before_content This hook executes immediately before the content column (outside the #content div). genesis_after_content This hook executes immediately after the content column (outside the #content div). genesis_sidebar This hook outputs the content of the primary sidebar, including the widget area output. genesis_before_sidebar_widget_area This hook executes immediately before the primary sidebar widget area (inside the #sidebar div). genesis_after_sidebar_widget_area This hook executes immediately after the primary sidebar widget area (inside the #sidebar div). genesis_sidebar_alt This hook outputs the content of the secondary sidebar, including the widget area output. genesis_before_sidebar_alt_widget_area This hook executes immediately before the alternate sidebar widget area (inside the #sidebar-alt div). genesis_after_sidebar_alt_widget_area This hook executes immediately after the alternate sidebar widget area (inside the #sidebar-alt div). genesis_before_footer This hook executes immediately before the footer, outside the #footer div. genesis_footer This hook, by default, outputs the content of the footer, including the #footer div wrapper. genesis_after_footer This hook executes immediately after the footer, outside the #footer div. genesis_before_loop This hook executes immediately before all loop blocks. Therefore, this hook falls outside the loop, and cannot execute functions that require loop template tags or variables. genesis_loop This hook outputs the actual loop. See lib/structure/loop.php and lib/structure/post.php for more details. genesis_after_loop This hook executes immediately after all loop blocks. Therefore, this hook falls outside the loop, and cannot execute functions that require loop template tags or variables. genesis_after_endwhile This hook executes after the endwhile; statement in all loop blocks. genesis_loop_else This hook executes after the else : statement in all loop blocks. genesis_before_entry (HTML5) This hook executes before each entry in all loop blocks (outside the post_class() container). genesis_after_entry (HTML5) This hook executes after each entry in all loop blocks (outside the post_class() container). genesis_entry_header (HTML5) This hook executes before the entry content and generates the entry header content in all loop blocks. genesis_before_entry_content (HTML5) This hook executes before the .entry-content container in all loop blocks. genesis_entry_content (HTML5) This hook executes within the .entry-content container in all loop blocks. genesis_after_entry_content (HTML5) This hook executes after the .entry-content container in all loop blocks. genesis_entry_footer (HTML5) This hook executes after the entry content and generates the entry footer content in all loop blocks. genesis_before_post (XHTML) This hook executes before each post in all loop blocks (outside the post_class() div). genesis_after_post (XHTML) This hook executes after each post in all loop blocks (outside the post_class() div). genesis_before_post_title (XHTML) This hook executes immediately before each post title for each post within the loop. genesis_post_title (XHTML) This hook outputs the actual post title, contextually, based on what type of page you are viewing. genesis_after_post_title (XHTML) This hook executes immediately after each post title for each post within the loop. genesis_before_post_content (XHTML) This hook executes immediately before the post/page content is output, outside the .entry-content div. genesis_post_content (XHTML) This hook outputs the actual post content and if chosen, the post image (inside the #content div). genesis_after_post_content (XHTML) This hook executes immediately after the post/page content is output, outside the .entry-content div. genesis_before_comments This hook executes immediately before the comments block (outside the #comments div). genesis_comments This hook outputs the entire comments block, including the section title. It also executes the genesis_list_comments hook, which outputs the comment list. genesis_after_comments This hook executes immediately after the comments block (outside the #comments div). genesis_list_comments This hook executes inside the comments block, inside the .comment-list OL. By default, it outputs a list of comments associated with a post via the genesis_default_list_comments() function. genesis_before_pings This hook executes immediately before the pings block (outside the #pings div). genesis_pings This hook outputs the entire pings block, including the section title. It also executes the genesis_list_pings hook, which outputs the ping list. genesis_after_pings This hook executes immediately after the pings block (outside the #pings div). genesis_list_pings This hook executes inside the pings block, inside the .ping-list OL. By default, it outputs a list of pings associated with a post via the genesis_default_list_pings() function. genesis_before_comment This hook executes before the output of each individual comment (author, meta, comment text). genesis_after_comment This hook executes after the output of each individual comment (author, meta, comment text). genesis_before_comment_form This hook executes immediately before the comment form, outside the #respond div. genesis_comment_form This hook outputs the actual comment form, including the #respond div wrapper. genesis_after_comment_form This hook executes immediately after the comment form, outside the #respond div WP Themes 1333 09/09/2023 WP Themes Function Genesis Hooks genesis framework hooks Genesis Framework The full hook layout can be found on the My StudioPress site. There are a lot of great articles over there explaining some keys to working with Genesis.Here is a simplified reference in the order the hooks load, starting with the hooks that load the actual frameworkgenesis_pregenesis_pre_frameworkgenesis_init header.php genesis_titlegenesis_metagenesis_beforegenesis_before_headergenesis_header genesis_site_titlegenesis_site_descriptiongenesis_after_headerframework.php genesis_before_content_sidebar_wrapgenesis_before_contentgenesis_before_loopgenesis_loop genesis_before_postgenesis_before_post_titlegenesis_post_titlegenesis_after_post_titlegenesis_before_post_contentgenesis_post_contentgenesis_after_post_contentgenesis_after_post genesis_before_commentsgenesis_comments genesis_list_commentsgenesis_before_pingsgenesis_pings genesis_list_pingsgenesis_after_pingsgenesis_before_commentgenesis_after_commentgenesis_before_comment_formgenesis_comment_formgenesis_after_comment_formgenesis_after_endwhilegenesis_loop_elsegenesis_after_loopgenesis_after_content genesis_sidebar genesis_before_sidebar_widget_areagenesis_after_sidebar_widget_areagenesis_sidebar_alt genesis_before_sidebar_alt_widget_areagenesis_after_sidebar_alt_widget_areagenesis_after_sidebar_content_wrapfooter.php genesis_before_footergenesis_footergenesis_after_footergenesis_afterWow, that’s a lot of hooks. Each on of those can have additional functions added. just a few lines of code can move entire sections of the site around. The next part in the series will be about actions. After that I’ll explain how to read the Genesis files to lear how to quickly find the right code to copy into your theme for editing. WP Themes 601 09/09/2023 WP Themes Function Genesis Functions genesis functions Genesis Framework Genesis FunctionsA list of genesis functionsgenesis_site_layoutFebruary 5, 2011 by Christopher Returns the site layout for different contexts.genesis_get_default_layoutFebruary 5, 2011 by Christopher genesis_get_layoutFebruary 5, 2011 by Christopher genesis_get_layoutsFebruary 5, 2011 by Christopher genesis_unregister_layoutFebruary 5, 2011 by Christopher genesis_set_default_layoutFebruary 5, 2011 by Christopher genesis_register_layoutFebruary 5, 2011 by Christopher This function registers new layouts by modifying the global $_genesis_layouts variable. Usage Parameters $layout_name (required) The name of the layout. $args An array of Arguments. Arguments label Actual name that is displayed in the admin area to select a layout. Default: No Label Selected img Image to be displayed when selecting layout on post page. […]genesis_create_initial_layoutsFebruary 5, 2011 by Christopher genesis_navFebruary 5, 2011 by Christopher genesis_get_term_filterFebruary 5, 2011 by Christopher genesis_get_custom_fieldFebruary 5, 2011 by Christopher genesis_custom_fieldFebruary 5, 2011 by Christopher genesis_seo_optionFebruary 5, 2011 by Christopher genesis_get_seo_optionFebruary 5, 2011 by Christopher genesis_optionFebruary 5, 2011 by Christopher genesis_get_optionFebruary 5, 2011 by Christopher genesis_user_meta_saveFebruary 5, 2011 by Christopher genesis_user_seo_fieldsFebruary 5, 2011 by Christopher genesis_term_meta_saveFebruary 5, 2011 by Christopher genesis_add_taxonomy_seo_optionsFebruary 5, 2011 by Christopher genesis_inpost_seo_saveFebruary 5, 2011 by Christopher genesis_add_inpost_seo_boxFebruary 5, 2011 by Christopher rel_canonicalFebruary 5, 2011 by Christopher genesis_canonicalFebruary 5, 2011 by Christopher genesis_robots_metaFebruary 5, 2011 by Christopher genesis_seo_meta_keywordsFebruary 5, 2011 by Christopher genesis_seo_meta_descriptionFebruary 5, 2011 by Christopher genesis_doc_head_controlFebruary 5, 2011 by Christopher genesis_default_titleFebruary 5, 2011 by Christopher genesis_disable_scribe_nagFebruary 5, 2011 by Christopher genesis_scribe_nagFebruary 5, 2011 by Christopher genesis_seo_compatibility_checkFebruary 5, 2011 by Christopher genesis_clear_update_transientFebruary 5, 2011 by Christopher genesis_update_pushFebruary 5, 2011 by Christopher genesis_update_emailFebruary 5, 2011 by Christopher genesis_update_nagFebruary 5, 2011 by Christopher genesis_update_action_linksFebruary 5, 2011 by Christopher genesis_upgraded_noticeFebruary 5, 2011 by Christopher genesis_upgradeFebruary 5, 2011 by Christopher genesis_update_checkFebruary 5, 2011 by Christopher genesis_register_sidebarFebruary 5, 2011 by Christopher Description This function expedites the widget area registration process by taking common things, before/after_widget, before/after_title, and doing them automatically. Usage Parameters name – Sidebar name. id – Sidebar id – Must be all in lowercase, with no spaces. description – Text description of what/where the sidebar is. Shown on widget management screen. (Since 2.9) before_widget […]genesis_get_imageDecember 19, 2010 by Christopher Info: Pulls an image from the media gallery and returns it. Since: 0.1 Function:genesis_get_image($args = array())genesis_load_faviconDecember 2, 2010 by Christopher Info: This function looks for a favicon. If it finds one, it will output the proper code in the Since: 0.2.2 Function Contents: Function Info: apply_filters() Filter Info: genesis_pre_load_favicon, genesis_favicon_url WP Themes 702 09/09/2023 _Misc Software Archive Backup Google Earth My Places google earth backup Google Earth Pro Move saved locations to a new computer You can move locations you've saved in Google Earth to a different computer. Saved locations are called placemarks, and they're automatically saved to your computer. Step 1: Find location file Windows Press Ctrl + Esc + r or Windows key + r. . In the "Open" box, enter "%USERPROFILE%AppDataLocalLowGoogleGoogleEarth". If you're using Windows XP, enter "%USERPROFILE%Application DataGoogleGoogleEarth" instead. Select OK. In the directory, you'll see a file called "myplaces.kml". This file has your saved locations. Note: If you want to replace a corrupted myplaces.kml file, use "myplaces.backup.kml." Mac Open the Finder. At the top of the screen, click Go. Hold down Option or Alt, then click Library and then Application support and then Google Earth. You'll see a file called "myplaces.kml". This file has your saved locations. Note: If you want to replace a corrupted myplaces.kml file, use "myplaces.backup.kml." Step 2: Move location file There are a few ways you can transfer the file with your saved locations to another computer: Save the file in Google Drive Email the file to yourself Save the file to a USB drive Tip: Back up your myplaces.kml file to a removable device, like USB drive. _Misc Software 0 01/23/2025 _Misc Software Archive Backup Config Files config Config Files code //require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php"); if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;} else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_codesaver'; $LEVEL=3;$_SESSION['LEVEL']=3; } $debug=false;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="../lightbox"; $sessionListSave=''; define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true); setcookie("humans_21909", "", time() - 3600, "/"); //Save this session when using ?RESET=1. Use commas if more than one accounting business //require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php"); if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;} else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_accounting';$_SESSION['LEVEL']=2; } $LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com"; $sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one. define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true); setcookie("humans_21909", "", time() - 3600, "/"); Accounting Personal //$y=date('Y');$m=date('m');$filter="Y".$y."M".$m; //if($_GET["$filter"]==1){$_SESSION['LEVEL']=1;$LEVE=1;}else{require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");} if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accountingp'; $_SESSION['LEVEL']=10;} else{ $server='localhost';$user='softwax3_Steve99';$password='pay99.bill';$database='softwax3_accountingP'; } $LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com"; $sessionListSave="date_of1SAVE,date_of2SAVE"; //Save this session when using ?RESET=1. Use commas if more than one. define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true); setcookie("humans_21909", "", time() - 3600, "/"); accounting Sons //require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php"); if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;} else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_winterbros';$_SESSION['LEVEL']=2; } $LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com"; $sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one. define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true); setcookie("humans_21909", "", time() - 3600, "/"); Email Accounts //require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php"); if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;} else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_emailAccts';$_SESSION['LEVEL']=3; } $LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebdesign.com"; $sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one. define('SWD_KEY', 'JesusIsLord'); define('SWD_AUTHENTICATE', true); setcookie("humans_21909", "", time() - 3600, "/"); Windsor hair Shoppe //require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php"); if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;} else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_hairShoppe';$_SESSION['LEVEL']=3; } $LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com"; $sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one. define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true); setcookie("humans_21909", "", time() - 3600, "/"); Invoices //require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php"); if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;} else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_invoices';$_SESSION['LEVEL']=3; } $LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com"; $sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one. define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true); setcookie("humans_21909", "", time() - 3600, "/"); Iq of Post include("settings.php"); $appid="mysqli"; //require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php"); if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;} else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_Tips';$_SESSION['LEVEL']=3; } $LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com"; $sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one. define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true); setcookie("humans_21909", "", time() - 3600, "/"); Crop Map //require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php"); if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;} else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_cropMap';$_SESSION['LEVEL']=3; } $LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com"; $sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one. define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true); setcookie("humans_21909", "", time() - 3600, "/"); _Misc Software 0 12/14/2025 _Misc Software Controls Dropbox Checkmarks Meaning checkmark Dropbox 163.4.5456 A solid green circle with a white checkmark means your file or folder is fully synced and local. “Synced” means that any changes you made to this file or folder are reflected everywhere you access your files in Dropbox. “Local” means that your file or folder is available when you’re not connected to internet." Sync in progress A solid blue circle with two white arrows going in a circle means that your file or folder is in the process of updating. If you chose to add it to your hard drive with the selective sync feature, this icon could mean that it’s still in the process of syncing to your hard drive. If you have set it to online-only, this icon could mean that your file is in the process of changing its sync status between online-only and available offline. Mixed state folder icon Available A white circle with a green border and a green checkmark means that a file or folder was opened (directly or with a third-party application) and synced. It also represents files uploaded from the computer you are using. “Synced” means that any changes you made to this file or folder are reflected everywhere you access your files in Dropbox. While this file or folder is stored on your device, it can be made online-only by right-clicking and selecting Make online-only. For folders, this icon means there is at least one available file in the folder, but no online-only files. There can also be files that are available offline in the folder. Note: If your computer is low on hard drive space, these files can automatically change to online-only to free up space. Red icon with an x Sync error A red circle with a white “X” means that your file or folder can’t update or sync. If you just attempted to add this file or folder to your Dropbox account, it may mean that it can’t be added. Learn about the different types of sync errors and how to solve them. Gray icon with a minus sign Ignored file A gray circle with a white minus sign means that your file is ignored. That means it’s stored in the Dropbox folder on your computer, but not on dropbox.com or on the Dropbox server. Learn more about ignored files. _Misc Software 2 09/09/2023 _Misc Software Convert Export Audio DaVinci resolve audio Sound Editor How to Export Audio ONLY in Davinci Resolve (+ Best Format) By Jens Trimmer May 3, 2022 UPDATED January 14, 2023 Export In this article, you will learn how to export audio ONLY from Davinci Resolve. This is actually quite simple so let’s get to it: Open the “Deliver” page inside Davinci Resolve. In the “Render Settings” window, open the “Video” tab and uncheck “Export Video“. Click on “Audio” to open the tab, and change “Format” to “MP3” or “Wave“. Click on “Add to Render Queue“. Click on “Render All” on the right-hand side of the screen. That’s the straightforward answer on how to do it! For a more detailed explanation of this, and whether “MP3” or “Wave” is best, read on! (You’ll also learn how to render only one audio track). How to Export Audio Only From Davinci Resolve! (Detailed Guide) So let’s explain what was discussed above with a bit more details (and pictures!). It does not matter if it’s a video or simply a song you have added to the timeline. Your final product will end up how you set the export settings anyways. Below, you can see that I’ve added a normal MP4 file to the timeline, which I’m going to export as an MP3 file: Normal click in timeline The next step is to go to the “Deliver” page in Davinci Resolve: deliever page Inside the “Deliver” page you should be able to see the “Render Setting” in the top corner on the left-hand side. Watch the picture below if you can’t see it. Inside the “Render Setting“, the first thing you see is some pre-made render settings. Which is awesome, and something we are going to use! By default this one is set to “Custom Export“, we want to change this one to “Audio Only“. To find this option you have to scroll sideways: _Misc Software 0 01/07/2026 _Misc Software Customizing Modify Output In Davinci Resolve 18 audio render mp4 shortcut DAVINCI RESOLVE [Audio] To change the volume of your audio in DaVinci Resolve, go to the “Edit” page (bottom) and select the clip you want to adjust in the timeline. Open the “Inspector” tab (top right-hand corner), click on the “Audio” sub-tab, and adjust the value next to “Volume“. [image] How to Change the Duration of a Still Image in DaVinci Resolve? Go to the menu “DaVinci Resolve” > “Preferences”. Click on the “User” tab. Click on the “Editing” option. Under “General Settings”, change the “Standard Still Duration” value to your desired one, say, 3 seconds. Click on “Save“. [Render] Select deliver bottom screen. I use mp4 - H.264 , 720 x 480 NTSC, 30 frames per second with a medium quality for uploading [How to Move Multiple Clips at Once in DaVinci Resolve] To move multiple clips in DaVinci Resolve, simply press “Ctrl” or “Command” on your keyboard while selecting the clips you want to move. Then drag the selected clips to move them. You can also select all the clips on the right-hand side of the playhead by pressing shortcut “Alt + Y” or “Option + Y”. [SPLIT CLIP] To split a clip in DaVinci Resolve, place the timeline playhead where you want to split it. Then, simply press the shortcut “Ctrl or Command + B” or “Ctrl or Command + “. Alternatively, you can click on “Timeline > Split Clip” located in the upper left-hand corner of Resolve. [Shortcuts] J - Play in reverse K - Pause play L - Play Forward Alt + left click ->Select either audio or video based on click Alt + y ->Selects everything right of the marker. ctrl + A ->Selects everything Ctrl + B ->Split clip Ctrl + G ->close clip gaps. I created this _Misc Software 2 09/09/2023 _Misc Software Customizing How To Change The Frame Rate Of Your Footage In DaVinci Resolve Frame rate MUO logo Newsletter Trending PC & Mobile Internet Productivity Lifestyle Tech Explained More Join Our Team Newsletter Advertise with us Write For Us Home Contact Us Terms Privacy Copyright About Us Fact Checking Policy Corrections Policy Ethics Policy Ownership Policy Partnership Disclaimer Official Giveaway Rules Copyright © 2023 www.makeuseof.com Home Creative How to Change the Frame Rate of Your Footage in DaVinci Resolve By Bill Gonzaler Published May 18, 2023 Changing the frame rate of your footage in DaVinci Resolve is easy. And we'll also show you a workaround for when you're stuck with the wrong FPS. Video Editing Software On Laptop Readers like you help support MUO. When you make a purchase using links on our site, we may earn an affiliate commission. Read More. Both the free and paid versions of DaVinci Resolve provide you with all the tools you could need to produce high-quality videos. To do so, you want to have the best frame rate possible for your videos so that they run smoothly and reflect a professional standard. WATCH NEXT Current Time 0:12 / Duration 10:00 While it is easy to change your frame rate setting in DaVinci Resolve, you may run into problems if you don't alter the settings soon enough. We'll show you the best way to change your frame rate settings and how to fix it if you get stuck on a frame rate you don't want. Change the Frame Rate Before You Start Working To make sure your projects are always operating at the FPS (frames per second) you want, get into the habit of setting the frame rate before you upload anything to your timeline. The reason for this is that as soon as you upload media to your timeline, your timeline frame rate setting gets locked in. Timeline frame rate in project settings window in DaVinci Resolve 18 To change the frame rate, go to File > Project Settings. Alternatively, you can click the cog wheel at the bottom-right of your screen in the Edit window or press Shift + 9. Select the Master Settings tab within the Project Settings window. Next, go down to the Timeline Frame Rate option and click on the number to bring out the drop-down menu. Now you can select the number of frames per second you want for your project. If you're just starting out, see the common mistakes beginners make in DaVinci Resolve so that you can avoid them. What to Do if Your Project Is Stuck at the Wrong Frame Rate Setting Unchangeable timeline frame rate setting in DaVinci Resolve 18 As we mentioned earlier, as soon as you upload something to your timeline, your timeline frame rate gets locked in. This can cause you a lot of frustration if you've just spent hours editing, only to realize that you can't make your video 60FPS, for example. The best way to fix this is to make a new timeline with the timeline frame rate settings you want. To do this, select File > New Timeline. Alternatively, use the keyboard shortcut Cmd/Ctrl + N. You can also Ctrl-click (Mac) or right-click (Windows) on empty space within the Media Pool. Then, go to Timeline > Create New Timeline ,or press Cmd/Ctrl + A to select all your clips and choose Create New Timeline Using Selected Clips and Bins. The benefit of this last option is that your clips are transferred over to the new timeline. Any of these methods will bring up a pop-up window of the Timeline settings. Create New Timeline pop-up in DaVinci Resolve 18 Make sure to uncheck the Use Project Settings box in the bottom left; this lets you change the settings in multiple tabs. Go to the Format tab and there you can change the Timeline Frame Rate. You can also save yourself time by unchecking the Empty Timeline box in the General tab. This will transfer over the clips from your original timeline when you finish the process by clicking Create. If, for whatever reason, your new timelines aren't performing at the frame rate you want, then there is one final foolproof method. Select File > New Project and immediately change the timeline frame rate settings within the Project Settings window. Then, copy and paste your original work over to this new project. For those of you considering the paid version of DaVinci Resolve, look into the differences between DaVinci Resolve Studio and the free version to help you decide. Choose the Best FPS for Your Footage You will save time and avoid frustration when you decide early on what frame rate is best for your video projects. Before you begin your edits, change your project settings and timeline frame rate to the outcome you want. If you do forget to do this, create a new timeline with different project settings or copy and paste your work into a new project. This way, you can always have the best frame rate settings for all of your DaVinci Resolve projects. Subscribe to our newsletter Comments Link copied to clipboard Related Topics Creative DaVinci Resolve Video Editor Video Editing About The Author Bill Gonzaler • Contributing Writer (47 Articles Published) Bill has 14 years or so of experience as a professional musician playing a few stringed instruments. He has since branched into music production and composition for the last 6 years to play not only a few, but all the instruments. When he's not musicking or writing, you'll find Bill farming. _Misc Software 2 09/09/2023 _Misc Software Customizing Setting NMEA Settings 1200 Monitor 1200 20/20 NMEA Linking 20/20 1200 MONITOR NMEAS SETTINGS 1. press the 3 square-4 square button top 2. Click on GNS position output settings 3.click on configuration. you can add a new profile here we called our 2025 4. Our guy had us turn port 2 on set baud rate 38400 5. Next turn the CGA->on, RMC->on, VTG->on 6. Click on each of the + signs and set each value to 5hz _Misc Software 0 04/09/2025 _Misc Software Customizing Outlook Data Files Outlook Data Files Archive Pst When you add an email account to Outlook, a local copy of your information is stored on your computer. This feature allows you to access your previously downloaded or synchronized email messages, calendar information, contacts, and tasks without an internet connection. Certain types of accounts, such as POP accounts, store their information in Outlook Data Files (.pst files). Outlook 365 accounts, Exchange accounts, IMAP accounts, and Outlook.com accounts store their information in Offline Outlook Data Files (.ost files). From the Inbox, select New Items > More Items > Outlook Data File. Enter a File name. To add a password, check the Add Optional Password box. Select OK. Type a password in both the Password and Verify Password text boxes and select OK again. If you set a password, you must enter it every time that the data file is opened—for example, when Outlook starts or when you open the data file in Outlook. Create a new Outlook data file About Outlook Data Files (.pst and .ost) When you run Outlook for the first time, the necessary data files are created automatically. Sometimes additional data files are needed. Outlook Data Files (.pst) are saved on your computer in the DocumentsOutlook Files folder. Older messages and items that you don't use regularly can be archived to an Outlook Data File (.pst). To learn how, see Archive older items automatically. If your online mailbox is nearly full, you can export some items to an Outlook Data File (.pst). You can also use these files to create archives, project files, or backups from any Outlook account. To learn how, see Export or backup email, contacts, and calendar to an Outlook .pst file. Outlook Data Files (.pst) are used for POP3 email accounts _Misc Software 1 07/21/2025 _Misc Software Customizing Windows windows turn off disable speed up Windows 11 00:00:00 Win11 - 10 things to turn off disable startup apps 00:50:03 ctrl + shift + ESC for task manager 01:18:04 2. Kill notification & tips 01:51:18 3. Shut down back ground apps 03:00:10 4. Stop online search in the start menu. 04:35:13 5. Kill widgets. 05:03:17 6. Reduce telemetry and diagnostics. 05:41:02 7. Disable ads in Explorer and the lock screen 06:08:24 kill the "fun facts and tips". 07:18:20 8. Kill Cortana and co-pilot. 07:44:19 9. Kill activity history and timeline. 08:51:17 10. stop auto reboots after updates 09:55:00 11. TURN OFF REMOTE ASSISTANCE. 10:23:15 12. Optional windows features you do not need 11:44:11 13. Kill the hibernation file if you don't hibernate. 13:03:26 another Microsoft update. 14:08:00 2. Searching index. 14:39:01 turn off search history. 15:12:26 turn off search highlights. 15:59:19 set my files to classic. 16:27:00 add excluded files folders you do not want searched. 16:41:12 3. Delivery optimization. 17:11:14 turn off delivery optimization. 17:33:13 turn off downloads from other devices. 17:50:19 5. Suggested apps in start menu ads. 18:31:27 turn off shell recommendations for tips. 23:00:27 god mode 23:23:13 made fixing windows simple. 27:27:27 stop windows from spying. 31:54:18 five PC tricks you should do 32:09:06 god mode code 32:58:26 windows 10 end-of-life. 40:43:16 are you still running Windows 10? 46:41:08 password locked out of windows. 53:45:10 END [video width="720" height="486" mp4="https://softwarewebdesign.com/SWDHome/wp-content/uploads/2025/11/Win11Howto20251129.mp4"][/video] Windows 10 tips near the at 32 min mark _Misc Software 0 11/29/2025 _Misc Software Files Reduce File Save Size File size smaller Powerpoint Delete image editing data and lower default resolution By default, when you edit an image, the data from the original is retained (to ensure the image can be restored). Discarding it means that you can't restore the changes you make, but it will reduce your file size. Lowering the default resolution for images also reduces your overall file size. Go to File > Options > Advanced. Under Image Size and Quality, do the following: Select Discard editing data. This option removes stored data that's used to restore the image to its original state after it's been edited. Note that if you discard editing data, you won't be able to restore the image after you edit it. Make sure that Do not compress images in file is not selected. In the Default resolution list, select a resolution that is 150ppi or lower. Set the image size and quality _Misc Software 1 01/03/2024 _Misc Software Files Fixing Email Hotmail outlook email regedit File Management Delete And Re-Create Your Outlook Profile Corrupted profiles can lead to errors in Outlook. By removing and creating a new profile, you can start with a fresh configuration and resolve registry or installation-related issues. Here’s how to delete and re-create your Outlook profile: Delete Outlook Profiles from the Registry Open the Registry Editor on your Windows device. Select Computer > HKEY_CURRENT_USER > SOFTWARE > Microsoft > Office > 16.0 > Outlook. Right-click on Profiles and choose Delete.outlook-profiles-delete-registry Select Yes to confirm the removal process. Add a New Outlook Profile _Misc Software 0 03/07/2024 _Misc Software Files Locating Storage Folders Folder telegram Locate Me Telegram depends on your device: on Android, it's typically Internal Storage/Telegram/Telegram Video or Android/data/org.telegram.messenger/files/Telegram/Telegram Video; _Misc Software 0 10/25/2025 _Misc Software Formatting Set Automatic Spacing Between Lines Of Text line spacing Publisher Select the text you want to change. On the Home tab, click the Paragraph launcher to show the Paragraph dialog box. Click the Indents and Spacing tab. Under Line spacing, in the Between lines box, type or select the amount of spacing you want between lines of text. For example, to double space type or select 2sp. To change from double space to single space type or select 1sp. Tip: The default value for space between lines is displayed in spaces (sp). If you type a whole number, Publisher interprets it as a number of spaces. You can specify other measurement units by typing the abbreviation for them after the numerical value: inches (in), centimeters (cm), picas (pi), points (pt), or pixels (px). When you specify a unit other than spaces, Publisher converts the measurement to points _Misc Software 2 09/09/2023 _Misc Software Formatting Auto Number In Excel auto number Excel Column You can automatically number a column in Excel using the Fill Handle, Fill Series, or the ROW function to create a sequential numbering system easily. Method 1: Using the Fill Handle Enter Initial Numbers: In the first two cells of the column where you want to start numbering, enter the numbers 1 and 2 (or any starting numbers you prefer). Select Cells: Highlight both cells containing the numbers. Use the Fill Handle: Move your cursor to the bottom-right corner of the selection until you see a small plus sign (the Fill Handle). Drag or Double-Click: Click and drag the Fill Handle down to fill the column with sequential numbers, or double-click it to auto-fill the column based on adjacent data. 2 2 Sources Method 2: Using the Fill Series Option Enter Starting Value: Type 1 in the first cell of the column. Access Fill Options: Go to the Home tab, click on Fill, and select Series from the dropdown menu. Configure Series: In the Series dialog box, choose Columns for Series in, set the Step Value to 1, and specify the Stop Value based on how many rows you want to number. Click OK: This will fill the column with a sequential series of numbers. 2 2 Sources Method 3: Using the ROW Function Enter the Formula: In the first cell of the column, type the formula =ROW(A1) (adjust the cell reference based on your starting position). This will return the row number of the cell. Drag the Fill Handle: Use the Fill Handle to drag the formula down the column. Each cell will display its corresponding row number, which updates automatically if rows are added or deleted. 2 2 Sources Tips Adjust Starting Point: If you want to start numbering from a different number, you can modify the formula accordingly (e.g., =ROW(A1)-4 to start from 1 in row 5). Manual Updates: If you use the Fill Handle or Fill Series, remember that these numbers won't automatically update if you add or remove rows; you may need to redo the process to maintain accuracy. 1 By following these methods, you can efficiently auto-number columns in Excel to keep your data organized and easily readable. _Misc Software 0 07/21/2025 _Misc Software Hardware Printer Tips 2600 laser paper Print Pages hp2600n printer [front load] place the side to be printed on down (labels down) or already printed out [bottom load] place the already printed side down with the bottom of the page furthest in or top of page closest to the front but always print facing down _Misc Software 0 04/19/2025 _Misc Software Ini Creating A .user.ini File For Linux user ini Developer ; cPanel-generated php ini directives, do not edit ; Manual editing of this file may result in unexpected behavior. ; To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor) ; For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI) [PHP] display_errors = Off max_execution_time = 600 max_input_time = 600 max_input_vars = 5000 memory_limit = 512M post_max_size = 516M session.gc_maxlifetime = 1440 session.save_path = "/var/cpanel/php/sessions/ea-php81" upload_max_filesize = 512M zlib.output_compression = Off _Misc Software 0 05/04/2025 _Misc Software Object How To Save A Microsoft Publisher File As An Image File jpg png Publisher 365 1. Launch Publisher. Click the “File” tab and click “Open.” 2. Browse to the location on your computer where your Microsoft Publisher file is currently saved. Double-click the file to open it. 3. Click the “File” tab and click “Export” from the menu that appears. 4. Select “Change File Type” under the heading “File Types.” 5. Click an image file format from the list displayed under the heading “Image File Types.” Available formats include PNG, JPEG, GIF, TIFF and BMP. 6. Click the “Save” button. Publisher saves a copy of your file in your chosen image format. _Misc Software 2 09/09/2023
genesis_register_layoutFebruary 5, 2011 by Christopher This function registers new layouts by modifying the global $_genesis_layouts variable. Usage Parameters $layout_name (required) The name of the layout. $args An array of Arguments. Arguments label Actual name that is displayed in the admin area to select a layout. Default: No Label Selected img Image to be displayed when selecting layout on post page. […]
genesis_register_sidebarFebruary 5, 2011 by Christopher Description This function expedites the widget area registration process by taking common things, before/after_widget, before/after_title, and doing them automatically. Usage Parameters name – Sidebar name. id – Sidebar id – Must be all in lowercase, with no spaces. description – Text description of what/where the sidebar is. Shown on widget management screen. (Since 2.9) before_widget […]
genesis_get_imageDecember 19, 2010 by Christopher Info: Pulls an image from the media gallery and returns it. Since: 0.1 Function:genesis_get_image($args = array())
genesis_load_faviconDecember 2, 2010 by Christopher Info: This function looks for a favicon. If it finds one, it will output the proper code in the Since: 0.2.2 Function Contents: Function Info: apply_filters() Filter Info: genesis_pre_load_favicon, genesis_favicon_url