‏إظهار الرسائل ذات التسميات Blogger Tips. إظهار كافة الرسائل
‏إظهار الرسائل ذات التسميات Blogger Tips. إظهار كافة الرسائل

السبت، 23 ديسمبر 2017

A Quick Guide to Terms Commonly Used in Blogging

Every work under the earth have their own terminologies or registered words which novice or people from other disciplines may not be able to comprehend. For instance, when Lawyers talk about consideration, they simply mean Money, when gamblers say crew, they mean cheating organisation and etc.
blog
Bloggers too are not left out with the use of terms. My friends that are not familiar with blogging don’t seem to understand me whenever I mentioned some terms while talking about building blogs. Sometimes, I have to explain it in the simplest form before they could grab the information I was trying to pass.
Today, I’ve decided to share a qucik guide to terms commonly used in blogging.
Tag: Tags are applied to WordPress blogs posts to provide a useful way to group related posts together and to quickly tell readers what a post is about. Tags also make it easier for people to find your content. Tags are similar to, but more specific than, categories. The use of tags is completely optional.
Label: Labels are applied to Blogger blog posts to easily categorize posts. When you publish your post on Blogger, the labels will be listed with it. Clicking any of the labels will take you to a page containing only posts with that label.
Categories: In WordPress-powered blogs, Categories provide a helpful way to group related posts together, and to quickly tell readers what a post is about. Categories also make it easier for people to find your content. Categories are similar to, but broader than, tags.
Theme: WordPress and some other blogging platforms use “themes” to describe a collection of files that work together to produce a graphical interface with an underlying unifying design for a weblog. Themes may include customized template files, image files (*.jpg*.gif), style sheets (*.css), custom Pages, as well as any necessary code files (*.php).
Template: Just as theme is to WordPress, so also template to Blogger and some other blogging platforms. Template is your blog superhero clothing.
    Widget: is a small helpful application program embedded directly into a web page. A widget has the role of a transient or auxiliary application, meaning that it just occupies a portion of a webpage and does something useful with information fetched from other websites and displayed in place. Widgets often take the form of Blog feeds, Facebook announcements and etc.
    Gadget: Gadget is the term that Blogger uses for a widget. A gadget and a widget serve the same functions.
    Plug-in: Plug-ins are tools to extend the functionality of the software that powers your blog. In WordPress-powered blogs, plug-ins add an additional feature or function to websites, most plug-ins are written in the PHP scripting language. Plugins can extend WordPress to do almost anything you can imagine.
    Permalink: A permalink is permanent URL assigned to individual blog post, as well as categories and other lists of weblog postings. A permalink is what another blogger will use to link to your article, or how you might share a link to your story on social media .
    Are there terms you think should be added to the list? Drop it/them in the comments section.

    الثلاثاء، 19 ديسمبر 2017

    Mtn Bring Out More Night Data Plans: Get 1GB for N200 or 5GB for N1000




    Since the beginning of this May 2016, MTN has released about 4 different data packages referred to as MTN Surprise, they are not yet tired in surprise their customers. I'm pretty sure that most of you guys are flexing with the new MTN 500MB for just N25 launched few days back, they are here again with another fantabulous night data package which serves as a better alternative to the new MTN 500MB for just N25 midnight plan.

    Whatever you use the data bundle for, live streaming, heavy download, normal download etc. MTN got you covered with suitable data packages. No more paying N2,500 for 4.5GB night and day plan, below are the new introduced night data plans;
    1GB Night Plan, (9PM – 6AM) Cost N200
    » 2.5GB Night Plan, (9PM - 6AM) Cost N500
    » 5GB Night Plan, (9PM - 6AM) Cost N1000
    To Subscribe for any of the above night plans.
    Simply dial *198# >> Choose 2 and then 8.
    Each of the plan valid for 30 days.

    This should serve as an alternative for those who can't wait till midnight for MTN 500MB of N25 (12:00am – 4:00am), then you can go for this new better plan that is suitable for the whole

    الاثنين، 18 ديسمبر 2017

    How to Disable Right Click on Blogger to Prevent Copying Content

    I run an Educational blog where students can find latest school News in Nigeria so I noticed some people are copying my blog content to their blog and they claim to be the owner of the post. What I did to curb this was to add a simple JavaScript code to my blog to disable right click option to prevent others from copying contents and images on my blog.


    Today, I will explain how, and the code I added to my blog to prevent this.
    The simple JavaScript code is:

    <script>
    var message="Right click is disabled!!";
    function clickIE4(){if (event.button==2){alert(message);return false;}}
    function clickNS4(e){if (document.layers||document.getElementById&&!document.all){if (e.which==2||e.which==3){alert(message);return false;}}}
    if (document.layers){document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS4;
    else if (document.all&&!document.getElementById){document.onmousedown=clickIE4;}
    document.oncontextmenu=new Function("alert(message);return false")
    </script>
    How to Add the Code to Blogger Blogs
    #1. Login to Blogger > Go to Layout > Add a Gadget > Click on  HTML/JAVASCRIPT

    #2. A window will pop out, then paste the JavaScript above into the pop up window.

    #3. Now click on Save

    If you follow the tutorial above carefully, nobody will be able to copy your blog contents and images again.