Diff
checker
Text
Text
Images
Documents
Excel
Folders
Legal
Enterprise
Desktop
Pricing
Sign in
Download Diffchecker Desktop
Compare text
Find the difference between two text files
Tools
History
Real-time editor
Hide unchanged lines
Disable line wrap
Layout
Split
Unified
Diff precision
Smart
Word
Char
Syntax highlighting
Choose syntax
Ignore
Transform text
Go to first change
Edit input
Diffchecker Desktop
The most secure way to run Diffchecker. Get the Diffchecker Desktop app: your diffs never leave your computer!
Get Desktop
Untitled diff
Created
11 years ago
Diff never expires
Clear
Export
Share
Explain
8 removals
Lines
Total
Removed
Characters
Total
Removed
To continue using this feature, upgrade to
Diff
checker
Pro
View Pricing
71 lines
Copy
0 additions
Lines
Total
Added
Characters
Total
Added
To continue using this feature, upgrade to
Diff
checker
Pro
View Pricing
68 lines
Copy
<?php
<?php
/**
/**
* @package Spun
* @package Spun
* @since Spun 1.0
* @since Spun 1.0
*/
*/
/*
/*
* Get the post thumbnail; if one does not exist, try to get the first attached image.
* Get the post thumbnail; if one does not exist, try to get the first attached image.
* If no images exist, let's print the post title instead.
* If no images exist, let's print the post title instead.
*/
*/
global $post;
global $post;
$postclass = '';
$postclass = '';
$url = '';
$url = '';
$custom_link = '';
$custom_link = '';
// Get the custom link
// Get the custom link
if ( function_exists( 'get_custom_field' ) ) {
if ( function_exists( 'get_custom_field' ) ) {
$custom_link = get_custom_field( 'custom_link' );
$custom_link = get_custom_field( 'custom_link' );
} else {
} else {
$custom_link = '';
$custom_link = '';
}
}
// Check if the custom link exists
// Check if the custom link exists
if ( !empty( $custom_link ) ) {
if ( !empty( $custom_link ) ) {
Copy
Copied
Copy
Copied
//Add in "http://" if it isn't there already
//Add in "http://" if it isn't there already
if ( strpos( $custom_link,'http://') === false ){
if ( strpos( $custom_link,'http://') === false ){
$custom_link = 'http://' . $custom_link;
$custom_link = 'http://' . $custom_link;
}
}
Copy
Copied
Copy
Copied
$url = $custom_link;
$url = $custom_link;
} else {
} else {
$url = the_permalink();
$url = the_permalink();
}
}
Copy
Copied
Copy
Copied
if ( '' != get_the_post_thumbnail() ) {
if ( '' != get_the_post_thumbnail() ) {
$thumb = get_the_post_thumbnail( $post->ID, 'post-thumbnail', array( 'title' => esc_attr( get_the_title() ) ) );
$thumb = get_the_post_thumbnail( $post->ID, 'post-thumbnail', array( 'title' => esc_attr( get_the_title() ) ) );
}
}
else {
else {
$args = array(
$args = array(
'post_type' => 'attachment',
'post_type' => 'attachment',
'numberposts' => 1,
'numberposts' => 1,
'post_status' => null,
'post_status' => null,
'post_mime_type' => 'image',
'post_mime_type' => 'image',
'post_parent' => $post->ID,
'post_parent' => $post->ID,
);
);
$first_attachment = get_children( $args );
$first_attachment = get_children( $args );
if ( $first_attachment ) {
if ( $first_attachment ) {
foreach ( $first_attachment as $attachment ) {
foreach ( $first_attachment as $attachment ) {
$thumb = wp_get_attachment_image( $attachment->ID, 'post-thumbnail', false, array( 'title' => esc_attr( get_the_title() ) ) );
$thumb = wp_get_attachment_image( $attachment->ID, 'post-thumbnail', false, array( 'title' => esc_attr( get_the_title() ) ) );
}
}
}
}
else {
else {
$thumb = '<span class="no-thumbnail">' . get_the_title() . '</span>';
$thumb = '<span class="no-thumbnail">' . get_the_title() . '</span>';
$postclass = 'no-thumbnail';
$postclass = 'no-thumbnail';
}
}
Copy
Copied
Copy
Copied
}
}
?>
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( $postclass ); ?>>
<article id="post-<?php the_ID(); ?>" <?php post_class( $postclass ); ?>>
Copy
Copied
Copy
Copied
<a
href="<?php echo $url ?
>" title="<?php echo esc_attr( the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php echo $thumb; ?></a>
<a
>" title="<?php echo esc_attr( the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php echo $thumb; ?></a>
</article><!-- #post-<?php the_ID(); ?> -->
</article><!-- #post-<?php the_ID(); ?> -->
Saved diffs
Original text
Open file
<?php /** * @package Spun * @since Spun 1.0 */ /* * Get the post thumbnail; if one does not exist, try to get the first attached image. * If no images exist, let's print the post title instead. */ global $post; $postclass = ''; $url = ''; $custom_link = ''; // Get the custom link if ( function_exists( 'get_custom_field' ) ) { $custom_link = get_custom_field( 'custom_link' ); } else { $custom_link = ''; } // Check if the custom link exists if ( !empty( $custom_link ) ) { //Add in "http://" if it isn't there already if ( strpos( $custom_link,'http://') === false ){ $custom_link = 'http://' . $custom_link; } $url = $custom_link; } else { $url = the_permalink(); } if ( '' != get_the_post_thumbnail() ) { $thumb = get_the_post_thumbnail( $post->ID, 'post-thumbnail', array( 'title' => esc_attr( get_the_title() ) ) ); } else { $args = array( 'post_type' => 'attachment', 'numberposts' => 1, 'post_status' => null, 'post_mime_type' => 'image', 'post_parent' => $post->ID, ); $first_attachment = get_children( $args ); if ( $first_attachment ) { foreach ( $first_attachment as $attachment ) { $thumb = wp_get_attachment_image( $attachment->ID, 'post-thumbnail', false, array( 'title' => esc_attr( get_the_title() ) ) ); } } else { $thumb = '<span class="no-thumbnail">' . get_the_title() . '</span>'; $postclass = 'no-thumbnail'; } } ?> <article id="post-<?php the_ID(); ?>" <?php post_class( $postclass ); ?>> <a href="<?php echo $url ?>" title="<?php echo esc_attr( the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php echo $thumb; ?></a> </article><!-- #post-<?php the_ID(); ?> -->
Changed text
Open file
<?php /** * @package Spun * @since Spun 1.0 */ /* * Get the post thumbnail; if one does not exist, try to get the first attached image. * If no images exist, let's print the post title instead. */ global $post; $postclass = ''; $url = ''; $custom_link = ''; // Get the custom link if ( function_exists( 'get_custom_field' ) ) { $custom_link = get_custom_field( 'custom_link' ); } else { $custom_link = ''; } // Check if the custom link exists if ( !empty( $custom_link ) ) { //Add in "http://" if it isn't there already if ( strpos( $custom_link,'http://') === false ){ $custom_link = 'http://' . $custom_link; } $url = $custom_link; } else { $url = the_permalink(); } if ( '' != get_the_post_thumbnail() ) { $thumb = get_the_post_thumbnail( $post->ID, 'post-thumbnail', array( 'title' => esc_attr( get_the_title() ) ) ); } else { $args = array( 'post_type' => 'attachment', 'numberposts' => 1, 'post_status' => null, 'post_mime_type' => 'image', 'post_parent' => $post->ID, ); $first_attachment = get_children( $args ); if ( $first_attachment ) { foreach ( $first_attachment as $attachment ) { $thumb = wp_get_attachment_image( $attachment->ID, 'post-thumbnail', false, array( 'title' => esc_attr( get_the_title() ) ) ); } } else { $thumb = '<span class="no-thumbnail">' . get_the_title() . '</span>'; $postclass = 'no-thumbnail'; } } ?> <article id="post-<?php the_ID(); ?>" <?php post_class( $postclass ); ?>> <a>" title="<?php echo esc_attr( the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php echo $thumb; ?></a> </article><!-- #post-<?php the_ID(); ?> -->
Find difference