2024-01-09 16:13:20 +01:00
< ? php
/**
* Template part for displaying a message that posts cannot be found
*
* @ link https :// developer . wordpress . org / themes / basics / template - hierarchy /
*
2024-01-13 13:44:31 +01:00
* @ package Oficina_de_Suport_theme
2024-01-09 16:13:20 +01:00
*/
?>
< section class = " no-results not-found " >
< header class = " page-header " >
2024-01-13 13:44:31 +01:00
< h1 class = " page-title " >< ? php esc_html_e ( 'No s’ha trobat res' , 'ofisuport' ); ?> </h1>
2024-01-09 16:13:20 +01:00
</ header ><!-- . page - header -->
< div class = " page-content " >
< ? php
if ( is_home () && current_user_can ( 'publish_posts' ) ) :
printf (
'<p>' . wp_kses (
/* translators: 1: link to WP admin new post page. */
2024-01-13 13:44:31 +01:00
__ ( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.' , 'ofisuport' ),
2024-01-09 16:13:20 +01:00
array (
'a' => array (
'href' => array (),
),
)
) . '</p>' ,
esc_url ( admin_url ( 'post-new.php' ) )
);
elseif ( is_search () ) :
?>
2024-01-13 13:44:31 +01:00
< p >< ? php esc_html_e ( 'Ho sento, però no hi ha res que coincideixi amb els termes de cerca. Torneu-ho a provar amb algunes paraules clau diferents.' , 'ofisuport' ); ?> </p>
2024-01-09 16:13:20 +01:00
< ? php
get_search_form ();
else :
?>
2024-01-13 13:44:31 +01:00
< p >< ? php esc_html_e ( 'Sembla que no podem trobar el que busques. Potser la cerca pot ajudar.' , 'ofisuport' ); ?> </p>
2024-01-09 16:13:20 +01:00
< ? php
get_search_form ();
endif ;
?>
</ div ><!-- . page - content -->
</ section ><!-- . no - results -->