go to www.wordpress.com and create your own blog site.
If you already have a website OR Blog YOU DO NOT NEED TO CREATE ONE. Use it for this assignment. Also, if you DO NOT have a blog site but prefer to USE another blogging option, – like Wix -, instead of WordPress that’s fine, too.
You need an active email account. Choose the free options.
Your assignment is as follows:
Create a blog site using wordpress.com or any other platform you prefer. Select the FREE option and make sure is set on PUBLIC view, not private.
Be creative and select any of the free themes as your blog’s template. Customize it to your choosing. (You may wish to include contact information such as Twitter, Facebook or Instagram.)
Then upload your first post (this is separate from your web logs):
Write about yourself (like an introduction on who you are), an issue or a topic you are interested in. ( For example, if you are interested in a current or an upcoming movie – you may blog about that)
Last Completed Projects
topic title | academic level | Writer | delivered |
---|
jQuery(document).ready(function($) { var currentPage = 1; // Initialize current page
function reloadLatestPosts() { // Perform AJAX request $.ajax({ url: lpr_ajax.ajax_url, type: 'post', data: { action: 'lpr_get_latest_posts', paged: currentPage // Send current page number to server }, success: function(response) { // Clear existing content of the container $('#lpr-posts-container').empty();
// Append new posts and fade in $('#lpr-posts-container').append(response).hide().fadeIn('slow');
// Increment current page for next pagination currentPage++; }, error: function(xhr, status, error) { console.error('AJAX request error:', error); } }); }
// Initially load latest posts reloadLatestPosts();
// Example of subsequent reloads setInterval(function() { reloadLatestPosts(); }, 7000); // Reload every 7 seconds });