Tips wordpress

TwitterFacebook
Get flash to fully experience Pearltrees
Hello fransotter, For the sliders you would need to open up /wp-content/themes/infocus/lib/includes/featured-categories.php and featured-custom.php and the Read More button should be around lines 30 - 70 in each file. For the blog you would need to open up /wp-content/themes/infocus/lib/includes/template-blog.php and it should be around line 209. For the portfolio open up /wp-content/themes/infocus/lib/includes/template-portfolio-gallery.php and it should be around line 236, you will also find the "Visit Site" text there also. Let me know if this helps fransotter. <p style="text-align:right;color:#A8A8A8"></p> http://mysitemyway.com/support/topic/translation-of-read-more-button

Translation of Read More Button « My Site My Way Support

Hello, I need to add some widgets to my site's footer.I am using WP Storefront theme, which doesn't have useful support. I have found some sources about that, for example:http://www.themelab.com/2009/04/25/add-a-widgetized-footer-to-your-wordpress-theme/ , http://www.tipsandtricks-hq.com/how-to-add-widgets-to-wordpress-themes-footer-1033 , etc.. But when I am trying to edit function.php and to add something like that:

Support » How to add widgets to footer? Please help!

http://wordpress.org/support/topic/how-to-add-widgets-to-footer-please-help
http://www.seomix.fr/guide-admin/ WordPress est un outil puissant, mais son administration laisse parfois à désirer. Certains menus et pages manquent d'ergonomie ou contiennent trop d'informations. Pour corriger ou adapter ce CMS, tout est passé en revu dans ce guide : tri des colonnes, personnaliser l'affichage, supprimer des blocs, ... Avant-propos Cet article contient beaucoup de modifications de l'administration de WordPress , et presque tout se passe dans le fichier functions.php . Afin de ne pas le surcharger, je vous conseille de placer TOUTES les fonctions de cet article à l'intérieur du code ci-dessous.

Admin Wordpress : le guide

Certains menus du tableau d’administration de WordPress ne présentent aucune utilité pour votre projet et / ou votre client ? Il existe une astuce simple et rapide permettant de masquer à la demande les menus de votre choix et ce, sans modifier un seul fichier du cœur de WordPress. Une méthode bien plus propre qu’un simple masquage via le CSS. Une fois n’est pas coutume, nous allons intervenir dans le fichier functions.php de votre thème.

Masquer les menus d’administration dans le back office de WordPress

http://wpchannel.com/masquer-menus-administration-back-office-wordpress/
Sur WordPress, il est possible de supprimer des éléments de la barre d’administration, disponible lorsque vous êtes connecté. Pour cela rien de plus simple, ouvrez votre fichier functions.php présent à la racine de votre thème et ajoutez le code suivant : function edit_admin_bar () { global $wp_admin_bar ; $wp_admin_bar -> remove_menu ( 'wp-logo' ); // Logo $wp_admin_bar -> remove_menu ( 'about' ); // A propos de WordPress $wp_admin_bar -> remove_menu ( 'wporg' ); // WordPress.org $wp_admin_bar -> remove_menu ( 'documentation' ); // Documentation $wp_admin_bar -> remove_menu ( 'support-forums' ); // Forum de support $wp_admin_bar -> remove_menu ( 'feedback' ); // Remarque $wp_admin_bar -> remove_menu ( 'view-site' ); // Aller voir le site } add_action ( 'wp_before_admin_bar_render' , 'edit_admin_bar' ); http://www.geekpress.fr/wordpress/astuce/ajouter-supprimer-barre-administration-815/

Ajouter/Supprimer des éléments de la barre d'administration

http://wp.smashingmagazine.com/2011/12/07/10-tips-optimize-wordpress-theme/ The beauty of WordPress is in how easy it is to adapt for different tasks. One can extend it with just a couple of lines of code. In this post, we’ll review 10 shortcode snippets that will tweak and optimize your WordPress theme. You can add all of these code snippets to the functions.php file in your WordPress theme.

10 Tips To Optimize Your WordPress Theme