[ $this, 'set_nofollow' ] ); } else { $do_include = $this->should_add_no_index_for_list_based_views( $instance ); } /** * Filter to disable the noindex meta tag on Views V2. * * @since 6.2.6 * * @param bool $do_include Whether to add the noindex, nofollow meta tag or not. * @param string $view The current view slug. */ $do_include = (bool) apply_filters( 'tec_events_seo_robots_meta_include', $do_include, $view ); /** * Filter to disable the noindex meta tag on Views V2 for a specific view. * * @since 6.2.6 * * @param bool $do_include Whether to add the noindex, nofollow meta tag or not. * @param string $view The current view slug. */ $do_include = (bool) apply_filters( "tec_events_seo_robots_meta_include_{$view}", $do_include, $view ); if ( ! $do_include ) { return; } if ( $do_include ) { add_filter( 'wp_robots', [ $this, 'filter_robots_directives' ] ); } } /** * Set nofollow in the robots directives. * * @since 6.10.2 * * @param array $robots The directives for the robots meta tag. * * @return array The directives for the robots meta tag. */ public function set_nofollow( $robots ): array { $robots['nofollow'] = true; return $robots; } /** * Filter the robots directives for the current view. * * @since 6.10.2 * * @param array $robots The directives for the robots meta tag. * * @return array The directives for the robots meta tag. */ public function filter_robots_directives( $robots ) { $robots['noindex'] = true; /** * Filter wp robots directives on Views V2. * * @since 6.10.2 * * @param array $robots The directives for the robots meta tag. */ $robots = (array) apply_filters( 'tec_events_filter_wp_robots_meta_directives', $robots ); return $robots; } /** * Determine if a noindex should be added for list-based views. * * Returns true when: * - The view has no events (existing behaviour). * - The URL carries ?tribe-bar-date as a raw query parameter, meaning the user * navigated to a date-specific List view URL. These parameterised URLs produce * duplicate content — the canonical tag already points to the base /events/list/ * URL — so adding noindex closes the indexing loop without removing content. * * To allow date-parameterised List view URLs to be indexed (e.g. for sites that * intentionally expose dated list views), add: * * add_filter( 'tec_events_seo_robots_meta_include_list', '__return_false' ); * * @since 6.2.6 * @since 6.16.5 Also returns true when ?tribe-bar-date is present. * * @param View_Interface $instance The view instance. * * @return bool */ protected function should_add_no_index_for_list_based_views( $instance ): bool { $context = $instance->get_context(); if ( ! $context->is( 'tec_post_type' ) ) { return false; } // Any dated List view URL (?tribe-bar-date present) is a parameterised variant // of the canonical base URL and should not be independently indexed. // This can be disabled per-site via Settings > Display > SEO & URL Handling. if ( ! empty( tribe_get_request_var( 'tribe-bar-date' ) ) && tribe_get_option( Settings::OPT_NOINDEX_DATED_LIST_URLS, true ) ) { return true; } $events = $instance->get_repository(); // No posts = no index. $count = $events->count(); return $count <= 0; } /** * Returns the end date time object read from the current context. * * @since 6.2.3 * @deprecated 6.10.2 - No replacement, unused coding. * * @param string $view The current view slug. * @param DateTime $start_date The start date. * @param Tribe__Context $context The current context. * * @return DateTime|false A DateTime object or `false` if a DateTime object could not be built. * */ public function get_end_date( $view, $start_date, $context ) { _deprecated_function( __FUNCTION__, '6.10.2' ); $end_date = $context->get( 'end_date' ); switch ( $view ) { case 'day': $end_date = clone $start_date; $end_date->modify( '+1 day' ); return $end_date; case 'week': $end_date = clone $start_date; $end_date->modify( '+6 days' ); return $end_date; case 'month': $end_date = clone $start_date; $end_date->modify( '+1 month' ); return $end_date; default: return Dates::build_date_object( $end_date ); } } /** * Prints a "noindex,follow" robots tag. * * @since 6.2.3 * @deprecated 6.10.2 - use filter_robots_directives instead to modify WordPress's wp_robots filter. */ public function print_noindex_meta() :void { _deprecated_function( __FUNCTION__, '6.10.2', 'Use $this->>filter_robots_directives instead.' ); $robots_meta_content = $this->get_noindex_follow(); /** * Filter to disable the noindex meta tag on Views V2. * * @since 6.2.6 * @deprecated 6.10.2 - No replacement * * @param string $robots_meta_content The contents of the robots meta tag. * @param string $view The current view slug. */ $robots_meta_content = (string) apply_filters_deprecated( 'tec_events_seo_robots_meta_content', $robots_meta_content ); if ( ! $robots_meta_content ) { return; } $noindex_meta = sprintf( '', esc_attr( $robots_meta_content ) ). "\n"; /** * Filters the noindex meta tag. * * @since 6.2.3 * @deprecated 6.10.2 - No replacement. * * @param string $noindex_meta */ $noindex_meta = apply_filters_deprecated( 'tec_events_no_index_meta', $noindex_meta ); echo wp_kses( $noindex_meta, [ 'meta' => [ 'id' => true, 'name' => true, 'content' => true, ], ] ); } /** * Get the noindex, follow string. * * @since 6.2.6 * @deprecated 6.10.2 - No replacement. * * @return string */ public function get_noindex_follow(): string { _deprecated_function( __FUNCTION__, '6.10.2' ); return 'noindex, follow'; } /** * Get the noindex, nofollow string. * * @since 6.2.6 * @deprecated 6.10.2 - No replacement. * * @return string */ public function get_noindex_nofollow(): string { _deprecated_function( __FUNCTION__, '6.10.2' ); return 'noindex, nofollow'; } } Próximos Eventos – Página 23 – Federación de Natación de la Región de Murcia Ir al contenido
  • Federación
  • Clubes
  • Natación
    • Calendario y Competiciones
    • Histórico
  • Waterpolo
  • Artística
    • Competiciones
    • Histórico
  • Master
    • Competiciones
    • Histórico
  • Aguas Abiertas
    • Competiciones
    • Histórico
  • Actualidad
    • Noticias
    • Eventos
  • DOCUMENTOS
  • ELECCIONES 2024
Federación de Natación de la Región de Murcia
logo
  • Inicio
  • Noticias
  • Contacto
  • Protocolo de Accidentes
  • Eventos
  • Formación
  • GALAS FNRM
clear
Federación de Natación de la Región de Murcia
logo
MENUMENU
  • Federación
    • La Federación

      • Junta Directiva
      • Asambleas
      • Calendario General
      • Estatutos
    • Comités

      • Comité de Arbitros
      • Comité Disciplinario
      • Comité Apelación
    • Comisiones Técnicas

      • Comisión técnica de Natación
    • Árbitros

      Para entrar necesita su clave de acceso.

      Acceso Arbitros

  • Clubes
    • Natación

      Clubes de Natación
      Región de Murcia

      Ver Clubes

    • Waterpolo

      Clubes de Waterpolo
      Región de Murcia.

      Ver Clubes

    • Artística

      Clubes de Artística
      Región de Murcia

      Ver Clubes

    • TODOS

      Todos los Clubes
      Región de Murcia

      Ver Clubes

  • Natación
    • Calendario y Competiciones
    • Histórico
  • Waterpolo
    • Selecciones

      • Tecnificación
      • Infantil
      • Cadete

    • Clasificaciones
      Ver los clasificaciones de nuestras competiciones de Waterpolo.

      Ver Clasificaciones


      Calendarios
      Consulte los calendarios de todas nuestras competiciones de Waterpolo.

      Ver Calendarios


      Histórico
      Todas las competiciones de Waterpolo.

      Ver Histórico

  • Artística
    • Competiciones
    • Histórico
  • Master
    • Competiciones
    • Histórico
  • Aguas Abiertas
    • Competiciones
    • Histórico
  • Actualidad
    • Noticias
    • Eventos
  • DOCUMENTOS
  • ELECCIONES 2024
  • search

Parace que no se puede encontrar lo que busca, por favor pruebe con otra búsqueda.

0 eventos encontrados.

Eventos

Aviso
No hay eventos programados.
Aviso
No hay eventos programados.

Navegación de búsqueda y vistas de Eventos

Navegación de vistas de Evento

  • Lista
  • Mes
  • Día
Hoy
  • Hoy
  • Google Calendar
  • iCalendar
  • Outlook 365
  • Outlook Live
  • Exportar archivo .ics
  • Exportar archivo .ics de Outlook
  • 1
  • …
  • 21
  • 22
  • 23
No hay mas ítems, lo sentimos.
Copyright FNRM - Diseño por mimo
  • Política de Privacidad
  • Aviso Legal
Utilizamos cookies para asegurar que damos la mejor experiencia al usuario en nuestra web. Si sigues utilizando este sitio asumiremos que estás de acuerdo.