Descriere
This is an extension for the popular Advanced Custom Fields plugin and TablePress plugin. By itself, this plugin does NOTHING.
This add-on for Advanced Custom Fields creates a custom field type to select a TablePress table, providing a dropdown menu that lets you select from a list of available tables. The field can return the table ID for the table selected, or the full HTML of the table.
Acest modul necesită:
- Câmpuri personalizate avansate versiunea 4+ sau 5+
- TablePress versiunea 1.5+
Just to be sure there’s no confusion… This plugin does nothing unless ACF (Or ACF Pro) and TablePress are both active on your site
Urmărește acest modul pe GitHub
Folosind câmpul
This field can return the table ID for the table selected, or the full HTML of the table (the same output as the rendered shortcode).
When returning the table ID, either of the following code snippets will output your table (replacing ‘your_table_here’ with the field name you defined in your ACF Field Group settings).
<?php
$tablepress_id = get_field( 'your_field_here' );
echo do_shortcode( '[table id="'.$tablepress_id.'"]' );
?>
or, to avoid using do_shortcode(), use
<?php
$tablepress_id = get_field( 'your_field_here' );
$args = array(
'id' => $tablepress_id,
);
if ( function_exists( 'tablepress_print_table' ) ) {
tablepress_print_table( $args );
}
?>
To simply display the chosen table on your page, choose the HTML output option in your field settings, and insert into your php with
the_field( 'your_field_here' );
Pentru mai multe explicații, detaliate, vezi articolul nostru Configurarea unui câmp ACF pentru TablePress.
Instalare
- Copiază dosarul
acf-tablepressîn dosarul „plugins” - Activează modulul din pagina de administrare a modulelor
Recenzii
Contributori și dezvoltatori
„ACF: TablePress” este un software open-source. La acest modul au contribuit următoarele persoane.
Contributori„ACF: TablePress” a fost tradus în 14 locale. Mulțumim traducătorilor pentru contribuția lor.
Tradu „ACF: TablePress” în limba ta.
Te interesează dezvoltarea?
Răsfoiește codul, vezi depozitarul SVN, sau abonează-te la jurnalul de dezvoltare prin RSS.
Istoric modificări
1.3.2
- Corecție: corectează o eroare care împiedica utilizatorii care nu sunt administratori să insereze tabele.
- Fix: Fixed bug that failed to display the table while logged out and using „HTML Output”
1.3.1
- Corecție: corectează notificările privind variabilele nedefinite introduse în versiunea 1.3.
1.3
- Update: Improved activation check: plugin now checks for Advanced Custom Fields as well as TablePress before activating.
1.2.2
- Actualizare: sortează lista derulantă după titlu tabel în loc de ID tabel.
1.2.1
- Fix: bug intoducted in last update displaying wrong version number.
1.2
- Actualizare: a actualizat biblioteca TGM-Plugin-Activation la versiunea 2.5.2
1.1
- Nou: a adăugat suport pentru i18n
- Nou: a adăugat traduceri pentru limba portugheză (pt_PT, pt_BR)
- Update: Changed text domain to match the plugin slug (‘acf-tablepress’)
- Update: Removed hard-coded settings in rendered tables
1.0
- Versiunea inițială