Search Results
Article: 7 Tips To Improve Website Usability
Website usability should be an essential part of your online strategy, but it is so easily overlooked or overshadowed by pretty design. Here is a quick list of 7 things that can cause your users to get frustrated and go elsewhere. 1. Search Search is a very important part of any site, and if it …
Article: PHP Questions
… questions and use them in your own interviews. I have created a new category to store these questions in and will be updating this post as and when I add more questions to that category. The Questions Scope Resolution Printing A Boolean Value …
… 'year', 'monthnum', 'day', 'hour', 'minute', 'second', 'name', 'category_name', 'tag', 'feed', 'author_name', 'static', 'pagename', … 'year', 'monthnum', 'day', 'hour', 'minute', 'second', 'name', 'category_name', 'tag', 'feed', 'author_name', 'static', 'pagename', …
… the design, but most keyboards that lack the function keys are in this category. 50%/40% Very minimal keyboard that normally contains only the …
… Set the filter to provide a default value of the content ID from the URL. This will automatically pass the current page to the contextual …
… bloginfo('name'); ?> In addition to the name tag the tags description, url, admin_email and version are also available. The Loop is used by …
Article: PHP Exif/IFD0 Functions
The Exif/IFD0 functions in PHP work with images to pull out meta data associated with them. Most image applications and digital cameras will produce an image with a certain amount of meta data present. This is obvious stuff like file size and creation time stamps, but you can also get stuff like …
Article: Drupal 8: Automated Spam Protection
… Spam is a constant problem for any site on the internet that has a publicly available form, but automatically preventing … real content being submitted by real users. Manually moderating blog comments is usually a good idea, but many websites contain contact …
Article: Wordpress Breadcrumbs
… $trail = array($post); // Initialise the output. $output = ''; $currentCategory = 0; if (is_front_page() == true && $options['printOnHome'] == … array_unshift($trail, $parent); } } elseif (is_category()) { // The current page is a category page. $trail = array(); $currentCategory = …
… item of content. This system creates powerful search engine friendly URLs that can add keywords to the paths that Drupal uses to find … ->setLabel(t('Slug')) ->setDescription(t('The url slug of the entity.')); return $fields; } } Note the addition of … definitions. This will be used to store the name of this entity as a URL safe string that we can use to convert back into the entity object …