×

php up to date

Wordpress custom posts page with Pagination

Wordpress custom posts page with Pagination
Wordpress custom posts page with Pagination  <?php  $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $args = array('posts_per_page' => 5, 'paged' => $paged ); query_posts($args);  ?> <?php if ( have_posts() ) : ?>     <?php while...

Customize Login Page

Customize Login Page
wordpress login page customization Change the Logo Is the WordPress logo by default, this changes the file path of that image. Change file path and file name to your own needs. function custom_login_logo() { echo '<style type="text/css">h1 a { background: url('.get_bloginfo('template_directory').'/images/logo-login.gif)...

Embed a Page inside a Page

Embed a Page inside a Page
wordpress embed a Page inside a Page <?php $recent = new WP_Query("page_id=**ID**"); while($recent->have_posts()) : $recent->the_post();?>        <h3><?php the_title(); ?></h3>        <?php the_content(); ?> <?php...

Find All Links on a Page

Find All Links on a Page
Find All Links on a Page $html = file_get_contents('http://www.example.com'); $dom = new DOMDocument(); @$dom->loadHTML($html); // grab all the on the page $xpath = new DOMXPath($dom); $hrefs = $xpath->evaluate("/html/body//a"); for ($i = 0; $i < $hrefs->length; $i++) { $href...

Email Address Validation

Email Address Validation
php Email Address Validation <?php $email="test@geemail.com"; if (isValidEmail($email)) { echo "Hooray! Adress is correct."; } else { echo "Sorry! No way."; } //Check-Function function isValidEmail($email) { //Perform a basic syntax-Check //If this check fails,...

PHP TIPS AND TRICKS YOU SHOULD KNOW

PHP TIPS AND TRICKS YOU SHOULD KNOW
Check if Website is Available <?php if (isDomainAvailible('http://www.eightlegbuilders.in')) { echo "Up and running!"; } else { echo "Woops, nothing found there."; } //returns true, if domain is availible, false...