Author Archives: Muhammad Faridul Islam

List of Internet top-level domains

The following is a list of Internet top-level domains. The top-level domain article provides the background information. The official list of all top-level domains is maintained by the Internet Assigned Numbers Authority (IANA). Generic top-level domains gTLD Entity Notes .aero air-transport industry Must verify eligibility for registration; only those in various categories of air-travel-related entities […]

Graphics

Graphics (from Greek γραφικός graphia) are visual presentations on some surface, such as a wall, canvas, computer screen, paper, or stone to brand, inform, illustrate, or entertain. Examples are photographs, drawings, Line Art, graphs, diagrams, typography, numbers, symbols, geometric designs, maps, engineering drawings, or other images. Graphics often combine text, illustration, and color. Graphic design […]

Limit WordPress Post or Page Content

Copy this function and paste in the function.php ———— function dp_clean($excerpt, $substr=0) { $string = strip_tags(str_replace(‘[…]‘, ‘…’, $excerpt)); if ($substr>0) { $string = substr($string, 0, $substr); } return $string; } Call this function in your index.php ———– < ?php echo dp_clean($post->post_content, 250); ? >