Diff
checker
Testo
Testo
Immagini
Documenti
Excel
Cartelle
Legal
Enterprise
Applicazione per desktop
Prezzi
Accedi
Scarica Diffchecker Desktop
Confronta il testo
Trova la differenza tra due file di testo
Strumenti
Cronologia
Editor live
Comprimi invariate
Senza a capo
Layout
Diviso
Unificato
Livello di dettaglio
Intelligente
Parola
Carattere
Evidenziazione sintassi
Scegli sintassi
Ignora
Trasforma testo
Vai alla prima modifica
Modifica input
Diffchecker Desktop
Il modo più sicuro per usare Diffchecker. Ottieni l'app Diffchecker Desktop: i tuoi diff non lasciano mai il tuo computer!
Ottieni Desktop
Untitled diff
Creato
11 anni fa
Il diff non scade mai
Eliminare
Esporta
Condividere
Spiegare
8 rimozioni
Linee
Totale
Rimosso
Caratteri
Totale
Rimosso
Per continuare a utilizzare questa funzione, aggiorna a
Diff
checker
Pro
Visualizza prezzi
71 linee
Copia tutti
0 aggiunte
Linee
Totale
Aggiunto
Caratteri
Totale
Aggiunto
Per continuare a utilizzare questa funzione, aggiorna a
Diff
checker
Pro
Visualizza prezzi
68 linee
Copia tutti
<?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 ) ) {
Copia
Copiato
Copia
Copiato
//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;
}
}
Copia
Copiato
Copia
Copiato
$url = $custom_link;
$url = $custom_link;
} else {
} else {
$url = the_permalink();
$url = the_permalink();
}
}
Copia
Copiato
Copia
Copiato
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';
}
}
Copia
Copiato
Copia
Copiato
}
}
?>
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( $postclass ); ?>>
<article id="post-<?php the_ID(); ?>" <?php post_class( $postclass ); ?>>
Copia
Copiato
Copia
Copiato
<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(); ?> -->
Diff salvati
Testo originale
Apri 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(); ?> -->
Testo modificato
Apri 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(); ?> -->
Trovare la differenza