Rubrika: Programování Strana 15 z 24
HTML, CSS, PHP, MySQL, Javascript, JQuery, Wordpress …

I was recently building a contact form for a client using the popular Contact Form 7 WordPress plugin.
1 2 3 4 5 6 7 8 9 10 11 12 |
/** * Adding Goolge Fonts To WordPress - The Right Way * * @refer https://wp-mix.com/right-way-include-google-fonts-wordpress/ */ function right_way_to_include_google_fonts() { if (!is_admin()) { wp_register_style('google', 'https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700', array(), null, 'all'); wp_enqueue_style('google'); } } add_action('wp_enqueue_scripts', 'right_way_to_include_google_fonts'); |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
/** * Remove webiste field from WordPress comment form * * Removes the website field when comments form is displayed with comment_form() * * @since 1.0 */ function velocity_remove_comment_form_website_field( $fields ) { if ( isset( $fields['url'] ) ) { unset( $fields['url'] ); } return $fields; } add_filter( 'comment_form_default_fields', 'velocity_remove_comment_form_website_field' ); |
Do you need to show an extra navigation menu on your WordPress site? Or perhaps you need to show a bunch of links someplace? No matter your use-case, WordPress provides navigation menus that are very easy to create, manage and display. If you like the drag and drop interface of the navigation menus management screen, and you so you figured you’ll create a menu to show them.

Zajímavý a IMHO velmi užitečný počin partičky z Náš WP.
Obyvkle lze WordPress pluginy ovládat přímo z nástěnky ve WordPressu. Někdy však může být užitečné pluginy deaktivovat přes phpMyAdmin, např. ve chvíli, kdy máte problém se svojí WordPress stránkou a nemůžete se do svého WordPressu přihlásit.

V tomto návodu vám ukážeme, jak ručně přesunout existující stránky ve WordPressu na jiné doménové jméno.
See the Pen pure CSS twinkling stars background by Anastasia Goodwin (@agoodwin) on CodePen.
See the Pen Night on the mountain by Mikael Ainalem (@ainalem) on CodePen.