Opis
Add a fixed menu. The basic menu is at the bottom, but it can also be displayed on the top, left, and right.
Odnośniki
- Można określić pięć miejsc docelowych odnośnika.
- Dostarcza filtry dla ikon, adresów URL i tekstu dla każdego odnośnika.
Opcje
- Can specify the number of columns from 1 to 5.
- Can specify the font size with px, rem and em.
- Can specify the menu height with px, rem and em.
- Can specify the line height with px, rem and em.
- Can specify the padding with px, rem and em.
- Can specify their class to remove the overlap for headers and footers overlap.
- Można określić kolor tekstu, przycisków i nakładki.
- Możliwość określenia górnej granicy szerokości wyświetlania.
- Potrafi określić kolejność listy elementów CSS.
- Powyższe filtry opcji są dostarczone.
Inne filtry
- Wprowadź filtr do wymazania menu.
How it works
Live Demo
Ikonki
- Dashicons mogą być używane.
Customize
- Template files allow for flexible customization.
- The default template file is
template/fixedbottommenu-template-html.php
andtemplate/fixedbottommenu-template-css.php
. Using this as a reference, you can specify a separate template file using the filters below.
/** ==================================================
* Filter for template file of html.
*
*/
add_filter(
'fixed_bottom_menu_generate_template_html_file',
function () {
$wp_uploads = wp_upload_dir();
$upload_dir = wp_normalize_path( $wp_uploads['basedir'] );
$upload_dir = untrailingslashit( $upload_dir );
return $upload_dir . '/tmp/fixedbottommenu-template-html.php';
},
10,
1
);
/** ==================================================
* Filter for template file of css.
*
*/
add_filter(
'fixed_bottom_menu_generate_template_css_file',
function () {
$wp_uploads = wp_upload_dir();
$upload_dir = wp_normalize_path( $wp_uploads['basedir'] );
$upload_dir = untrailingslashit( $upload_dir );
return $upload_dir . '/tmp/fixedbottommenu-template-css.php';
},
10,
1
);
- CSS files can be set separately. Please see the filters below.
/** ==================================================
* Filter for CSS file.
*
*/
add_filter(
'fixed_bottom_menu_css_url',
function () {
$wp_uploads = wp_upload_dir();
$upload_url = $wp_uploads['baseurl'];
if ( is_ssl() ) {
$upload_url = str_replace( 'http:', 'https:', $upload_url );
}
$upload_url = untrailingslashit( $upload_url );
return $upload_url . '/tmp/fixedbottommenu.css';
},
10,
1
);
Zrzuty ekranu
Instalacja
- Prześlij folder
fixed-bottom-menu
do katalogu/wp-content/plugins/
- Włącz wtyczkę poprzez menu „Wtyczki” w panelu WordPress
Najczęściej zadawane pytania
brak
Recenzje
Kontrybutorzy i deweloperzy
„Fixed Bottom Menu” jest oprogramowaniem open source. Poniższe osoby miały wkład w rozwój wtyczki.
ZaangażowaniWtyczka „Fixed Bottom Menu” została przetłumaczona na 3 języki. Podziękuj tłumaczom za ich wkład.
Przetłumacz wtyczkę “Fixed Bottom Menu” na swój język.
Interesuje cię rozwój wtyczki?
Przeglądaj kod, sprawdź repozytorium SVN lub czytaj dziennik rozwoju przez RSS.
Rejestr zmian
[2.13] 2024/11/14
- Fix – Management screen display issue.
[2.12] 2024/11/14
- Fix – Management screen display issue.
[2.11] 2024/11/13
- Fix – Management screen display issue.
[2.10] 2024/11/11
- Fix – Management screen display issue.
[2.09] 2024/11/10
- Fix – Rebuilt javascript.
[2.08] 2024/04/21
- Fix – Translation.
[2.07] 2024/04/21
- Fix – Translation.
[2.06] 2024/04/21
- Tweak – About the template overview display.
[2.05] 2024/04/20
- Added – „Bottom and Right” Template.
[2.04] 2024/04/19
- Change – Changed the number of columns from 3 to 5 to 1 to 5.
- Change – readme.txt.
[2.03] 2024/04/18
- Added – Top,Right,Left Display Template.
- Added – Numeric and unit variables for fonts.
- Tweak – Addition of description on the admin page.
[2.02] 2024/04/17
- Fix – Simplification of templates.
[2.01] 2024/04/17
- Fix – Simplification of templates.
[2.00] 2024/04/16
- Added – Customization by template files.
- Change – The management screen was converted to React.
1.30
Supported WordPress 6.4.
PHP 8.0 is now required.
1.29
Poprawiono problem z dodawaniem kolumn.
1.28
Wsparcie dla WordPressa 5.7.
1.27
Poprawiono odinstalowywanie.
1.26
Wsparcie dla WordPressa 5.6.
1.25
Aktualizacja związane z dodatkami.
1.24
Aktualizacja związane z dodatkami.
1.23
Opublikowano odnośnik do strony na żywo.
Fixed Bottom Menu na żywo
1.22
Dodatkowo opcję z klasą stopki
Zmieniono widżet wyboru koloru
1.21
Poprawiono błąd związany z dodatkami.
1.20
Dodano filtr do wymazywania menu.
Dodano filtr dla z-index.
1.19
Dodano filtr dla wartości kolumn.
1.18
Usunięto niepotrzebny kod.
1.17
Dodatkowo kilka opcji.
Dodano kilka filtrów.
1.16
Naprawiono problem z zakrywaniem paska głównego systemu iOS
1.15
Możliwość określenia liczby kolumn od 3 do 5.
1.14
Poprawiono tłumaczenie.
1.13
Poprawiono tłumaczenie.
1.12
Poprawiono problem z odnośnikiem.
1.11
Możliwość wyboru starego ustawienia (wersja 1.01).
1.10
Ekran ustawień został zmieniony.
1.04
Poprawiono problem z CSS.
1.03
Poprawiono problem z „Maksymalna szerokość”.
1.02
Poprawiono problem z CSS.
1.01
Poprawiono odnośnik do strony ustawień.
1.00
Pierwsze wydanie.