Delete Site from Archiv Widget - wordpress

I created a Page in WP and i found it in the Archiv-Widget.
Is there a way to create a Page and don't show it in the Archiv?
I use WP 3.0.5

There isn't a way of excluding items using the built-in archive widget, unfortunately.

Related

Replacing ACF with my own code while building WP template

Is it possible, in your opinion, to code my own code so I could:
1. upload images in the WP backend interface.
2. attach that images to a specific post types ?
Also, I would like to replace repeater fields in option page with my own code.
It is possible to replace ACF option page with a simple WP function, that will create a new admin menu page. Thus, there is no need to ask the end user to purchase ACF pro in order to install my new WP theme. In the new admin menu page, it's possible to build a HTML Bootstrap posting Form. that WP function is called : add_menu_page().

How to create a public custom WordPress widget

I want to create a widget for WordPress that anybody can use (for free) which contains some entertaining content (like a gadget for iGoogle in earlier times).
What I did not find out:
Can a (custom) widget be public/listed, so everybody using WordPress can see and use it?
Or do I need to create a plugin in order for other WordPress users to see and use it?
Since I want to let the users decide, where to put this additional content, how can I achieve this? (i.e. integrate this widget behaviour into a WordPress plugin?)
The basic idea is that we have some interesting content, we want to spread on WordPress for free.
It's up to you wether you want to create you widget through you theme (eg: via functions.php) or via a plugin. If you would like everyone to use it independently from a theme, then the best idea would be to do it through a plugin.
Here is a simple tutorial that explains the pieces of code you need to include either in your theme or in a new plugin to create a Widget accessible via the WordPress's widgets panel: http://www.wpbeginner.com/wp-tutorials/how-to-create-a-custom-wordpress-widget

How to create paginated posts in WordPress?

Can any one tell me how i can split a wordpress post in multiple pages?
This is an example http://www.therichest.com/rich-list/most-popular/top-40-clearest-waters-from-around-the-world/2/
I don't use <!--nextpage --> or <!--more-->
You can use one of the pagination plugins available in WordPress directory to achieve this.
With the Advanced Post Pagination plugin you will be able to create pagination very similar to the one in the link you shared.
Once you install the plugin, you can include the content for every new page inside
[nextpage] [/nextpage]
You can read up more about it here http://codezag.com/how-to-create-pages-within-wordpress-post/

Elgg -- Create a default widget

I need to create a widget as a default one for he profile page in Elgg Site .
I just tried with the docs and some default widget plugins, But unfortunately i need to make it by code, and cant use any plugin.
Can anyone help me in creating such a widget
Thanks
I know its late. But this is an easier thing.
For plugin based solutions you can try the default_widgets plugin you receive with the download package or the widget manager plugin from coldtrick (Available in the elgg community).
If you can't use a plugin for this functionality,
Create a plugin hook for user registration event
use the elgg_create_widget() to add the widget
Override the widget view so that you can remove the widget controls.
But you still need a plugin to develop this.

Modify wordpress pages widget and turn it into a plugin?

I would like to make a plug-in that adds a widget in wordpress.
I would like the widget to be based on the current pages widget but add the ability to select either include OR exclude by drop down or checkbox then list pages by ID.
Following this guide I was able to change the exclude to include by hacking the core file located in wp-includes/default_widgets.php.
Here is the original default_widgets.php:
http://pastebin.com/Rg2vTMmK
How do I make the changes and turn it into a plugin?
Many Thanks
Found a solution here: http://wordpress.org/extend/plugins/widgets-reloaded/

Resources