How to create a separate category archive template.
How to create separate template for single post in category.
How to create a separate category archive template.
How to create separate template for single post in category.
As a web hosting company, many have expressed the opinion that Bluehost stinks:
I signed up for Bluehost 2½ years ago for a 3 year subscription at the rock bottom price of about $3.00 per month, paid in advance. I suspect they pack their servers with hundreds of websites and mine can really slow to a crawl. But, for someone who wants to learn about web development and has no plans to make money at it, the price cannot be beat.
I rarely need any support from Bluehost, but my site was recently hit by a malware attack. I now have something to say on the subject of: Does Bluehost suck?
Continue readingThe shortcut navigation pane in Outlook allows shortcuts to folders on the local computer. By default, however, Outlook displays an annoying security warning dialog box when the link is clicked. This article explains the registry settings needed to disable the dialog.
First, add a filter for the script loader tag:
add_filter( 'script_loader_tag', array( $this, 'add_defer_attr' ), 10, 2 );
Then, enqueue the script, noting its WordPress handle (in this case ‘hotMessScripts’):
wp_enqueue_script(
'hotMessScripts',
plugin_dir_url( __FILE__ ) . 'js/hotMessAdmin.js',
array('jquery', 'jquery-ui-sortable', 'jquery-ui-dialog')
);
Then, identifying the script’s handle, alter the script’s tag by inserting the desired ‘defer’ or ‘async’ attribute before the ‘src’ attribute:
/* Add defer attribute to hotMessAdmin.js script tag */
public function add_defer_attr( $tag, $handle ){
if( $handle == 'hotMessScripts' ){
return str_replace( ' src', ' defer="defer" src', $tag );
} else {
return $tag;
}
}
Remember, all script tags will run through this filter. The unaltered tag must still be returned even for the scripts tags that should not be changed, thus the else clause is important.
FFmpg is an open source video file converter.
This tutorial was very helpful in getting GULP to work with php. See also, this tutorial.
Also, you then need to set the Apache document root to the directory of you project.
Not much seems to be known about the advanced search syntax used in Outlook. But this blog article has a couple of useful links.
And here is the Microsoft Dev page on the Advanced Search method.
Outlook Spy might be a good tool to figure this out.