Status
Not open for further replies.

timtamboy63

Active Member
885
2009
0
0
So, im bored, and I feel like doing some PHP work. If anyone needs a custom script coded or w/e hit me up via this thread.

Include:
What functions the script needs to have, admin panel, etc
User system, etc
Whatever else you can think of, the more you have, the better.

Note, I WONT do any HTML, CSS, or Photoshop work right now, as I really cbf with that. So, if you have your HTML and CSS templates coded, i'll convert them to PHP.

Also if I didnt mention it earlier, its all free :)

EDIT: Seriously, don't PM me, its just annoying, and my PM box is almost full D:
 
24 comments
Oh yeah, that'd be easy. However, I won't design it, get someone to design it and code it in HTML, CSS and then i'll make it functional in PHP.
 
Make a script that can extract the big cover's of IMDB movies and stuff. Like the front cover, you have to click it in order to get it. I want something that all I have to do is put the imdb link and bam, it gets the direct link of the big cover and uploads it to lulzimg
 
I need a little help with php code inside wordpress theme.

I want to add a link to top menu navigation...this code is from header.php

Code:
<ul id="subnavbar">
			<li class="page_item<?php if(is_home()){echo(' current_page_item');} ?>"><a title="Latest" href="<?php bloginfo('url'); ?>">Home</a></li>
			<?php
				$stickyCategories = get_settings("ftoptions_sticky_categories");
				if($stickyCategories)
				{
					foreach ($stickyCategories as $value)
					{
						$value = str_replace(" ", "-",$value);
						$id = get_cat_id($value);
						wp_list_categories('include='.$id.'&title_li=');
					}
				}
			?>
			<?php //wp_page_menu('show_home=0&exclude='.$q2.'&menu_class=page_item&sort_column=menu_order'); ?>
			<?php wp_list_pages('title_li=&exclude='.$q2); ?>
		</ul>

I can see that it has a "Home" link and then lists all the pages.. I just a code to add a link and point somewhere on the blog.

Any help is appreciated.
 
I need a little help with php code inside wordpress theme.

I want to add a link to top menu navigation...this code is from header.php

Code:
<ul id="subnavbar">
            <li class="page_item<?php if(is_home()){echo(' current_page_item');} ?>"><a title="Latest" href="<?php bloginfo('url'); ?>">Home</a></li>
            <?php
                $stickyCategories = get_settings("ftoptions_sticky_categories");
                if($stickyCategories)
                {
                    foreach ($stickyCategories as $value)
                    {
                        $value = str_replace(" ", "-",$value);
                        $id = get_cat_id($value);
                        wp_list_categories('include='.$id.'&title_li=');
                    }
                }
            ?>
            <?php //wp_page_menu('show_home=0&exclude='.$q2.'&menu_class=page_item&sort_column=menu_order'); ?>
            <?php wp_list_pages('title_li=&exclude='.$q2); ?>
        </ul>
I can see that it has a "Home" link and then lists all the pages.. I just a code to add a link and point somewhere on the blog.

Any help is appreciated.

Just Add a <div> :)
 
Status
Not open for further replies.
Back
Top