|
Received an upvote
|
October 2, 2020 |
10 |
|
Received an upvote
How to add a featured image column to WordPress posts in admin?Pretty easy. Just copy this code into your theme functions.php. [apcode language="php"] /* =================================================================================================================... |
September 29, 2020 |
10 |
|
Received an upvote
How to retrieve the first category link of a post in WordPress?In order to retrieve the first category link of a post in WordPress, paste this code into functions.php: [apcode language="php"] function wowlayers_first_cat_link(){ $category = get_the_category();... |
September 29, 2020 |
10 |
|
Received an upvote
|
September 24, 2020 |
10 |
|
Posted an answer
How can I improve my site loading speed?I suggest you de-activate all your plugins and see if the website still loads that slow. If it does, activate the plugins one by one and see which one might cause the speed issues. If you de-activate... |
September 24, 2020 |
5 |
|
Received an upvote
|
September 21, 2020 |
10 |
|
Received an upvote
|
September 21, 2020 |
10 |
|
Received an upvote
|
September 18, 2020 |
10 |
|
Answer was selected as best
|
September 18, 2020 |
10 |
|
Received an upvote
|
September 18, 2020 |
10 |
|
Answer was selected as best
|
September 18, 2020 |
10 |
|
Received an upvote
|
September 18, 2020 |
10 |
|
Answer was selected as best
|
September 18, 2020 |
10 |
|
Received an upvote
Can I be able to set up user permission in WordPress? And how?You can use a plugin for this. I recommend Members – Membership & User Role Editor Plugin If you want to do it with PHP, you can add a new user role like this. Copy the following code into your... |
September 18, 2020 |
10 |
|
Answer was selected as best
|
September 18, 2020 |
10 |
|
Selected an answer as best
|
September 18, 2020 |
2 |
|
Received an upvote
Can I remove the date from WordPress URLs? How? Can you help?Sure. Just go to your WordPress admin dashboard Settings > Permalink > Common Settings and choose your desired URL structure. Cheers 🙂 |
September 18, 2020 |
10 |
|
Posted an answer
What are the best WordPress plugins for SEO purposes?Of the top of my head, this comes to my mind: All in One SEO Pack Yoast SEO Cheers. |
September 15, 2020 |
5 |
|
Posted an answer
How would I add a drop down menu to the content of my WordPress page?I am not really sure what do you mean. But to add a dropdown anywhere in your post page, you can use the HTML select tag like this: [apcode language="xml"] <label for="cars">Choose a car:</label>... |
September 15, 2020 |
5 |
|
Posted an answer
How do you show a sidebar only to the author of a post (PHP, functions, author, and WordPress)?To show your sidebar only to the author of the post, you need to first locate the [apcode language="php"]get_sidebar()[/apcode] code in your theme files. Usually this code can be found in the root of your... |
September 15, 2020 |
5 |