Search Result for: Wordpress Category

Articles

WordPress Dash incons

Can be used with your custom post types Link reference:
Read More

Adding custom post types (CPT) without a plugin

Very simply try adding this to your wpt_cpt.php file and explore what this does for your WordPress site. In a nutshell, this adds a new post type that you can now define in
Read More

WordPress disable admin navigation bar

To disable the admin navigation bar. Apply the following script to the function.php file. /* Disable the Admin Bar. */ add_filter( 'show_admin_bar', '__return_false' );
Read More

WordPress import Google fonts done the right way

Load fonts into your templates using Functions method as shown below: <?php function load_fonts() { wp_register_style('googleFonts',
Read More

Get featured image thumbnail as image or URL

the following code will return a featured image with <img> tags in a medium size. the_post_thumbnail('medium'); the following code will give you the URL of the featured
Read More

Including part of a template get_template_part()

If you would like to include a part of a template like frontpage-services.php in the main front-page.php template file you will need to add it in the following
Read More

Top websites using wordpress

I often get asked if WordPress is scalable, ie. can you add a large proportion of articles to it. The answer is yes it is and to prove it here are a few big named websites that
Read More

Trim text using wp_trim_words( )

User the following to trim display text. The following example is using a text field. wp_trim_words( get_field('intro_text'), 20
Read More

Adding Meta Tags to your WordPress site using ACF

An awesome way to set up convenient and easy to use meta tags using the very famous ACF
Read More