
Tips wordpress
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>
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!
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
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' );

