Basic Email Us Adding a subject Email Us Adding CC and BCC Email Us Adding body text Email Us
Category: PHP
WordPress add to menu on the fly
add_filter( ‘wp_nav_menu_items’, ‘your_custom_menu_item’, 10, 2 ); function your_custom_menu_item ( $items, $args ) { //if (is_front_page()) { $items .= ‘<li>Show whatever</li>’; }else{ $items .= ‘<li>Show something else</li>’; } if ( is_page( array( ‘meet-the-group’, ‘contact-us’ ) ) || is_front_page()) { // either in about us, or contact, or management page is in view //$items .= ‘<li>Show whatever</li>’; […]
Eliminate Load More in media file – WP – WordPress
add_filter( ‘media_library_infinite_scrolling’, ‘__return_true’ );
Directory address
Get theme URL
Current page ID outside the loop
Total number of posts
URL Validation
$url = ‘http://example.com’; $validation = filter_var($url, FILTER_VALIDATE_URL, FILTER_FLAG_HOST_REQUIRED); if ( $validation ) $output = ‘proper URL’; else $output = ‘wrong URL’; echo $output;