Reply To: Cannot connect.

Home Forums Support Cannot connect. Reply To: Cannot connect.

Home Forums Support Cannot connect. Reply To: Cannot connect.

#144834
José Luís Araújo

$time_string = sprintf( $time_string,
esc_attr( get_the_date( ‘c’ ) ),
esc_html( get_the_date() ),
esc_attr( get_the_modified_date( ‘c’ ) ),
esc_html( get_the_modified_date() )
);

printf( __( ‘<span class=”posted-on”>%1$s</span> <span class=”byline”>%2$s</span>’, ‘generate’ ),
sprintf( ‘%3$s‘,
esc_url( get_permalink() ),
esc_attr( get_the_time() ),
$time_string
),

}
endif;

if ( ! function_exists( ‘generate_excerpt_more’ ) ) :
/**
* Prints the read more HTML to post excerpts
*/
add_filter( ‘excerpt_more’, ‘generate_excerpt_more’ );
function generate_excerpt_more( $more ) {
return ‘ … ‘ . __(‘Ver mais’, ‘generate’) . ‘‘;
}
endif;

if ( ! function_exists( ‘generate_content_more’ ) ) :
/**
* Prints the read more HTML to post content using the more tag
*/
add_filter( ‘the_content_more_link’, ‘generate_content_more’ );
function generate_content_more( $more ) {
$more_jump = apply_filters( ‘generate_more_jump’,’#more-‘ . get_the_ID() );
return ‘<p>‘ . __(‘Read more’, ‘generate’) . ‘</p>’;
}